@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

address {
  font-style: normal;
}

#root, #__next {
  isolation: isolate;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
  hyphens: auto;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: royalblue;
}
a:link {
  color: royalblue;
}
a:visited {
  color: royalblue;
}

p {
  line-height: 2;
}

.content-width {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
}

.gradient-text {
  font-size: 8em; /* テキストサイズを大きくして効果を見やすく */
  font-weight: bold;
  text-align: center;
  /* 1. 背景にグラデーションを設定 */
  background-image: linear-gradient(#0041BF, #00A5D9);
  /* 2. 背景をテキストの形に切り抜く (ベンダープレフィックスが必要) */
  -webkit-background-clip: text;
  background-clip: text;
  /* 3. テキストの色を透明にする（背景が見えるように） */
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* フォールバック */
  color: #0041BF;
}

.main-subpage {
  padding-top: 80px;
}
.main-subpage h1 {
  height: 200px;
  background: radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.3) 0%, rgba(188, 224, 204, 0.4) 30%, transparent 60%), radial-gradient(circle at 33% 85%, rgba(255, 213, 79, 0.7) 0%, rgba(255, 193, 7, 0.5) 15%, transparent 25%), radial-gradient(circle at 20% 30%, rgba(52, 138, 175, 0.7) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(70, 155, 190, 0.6) 0%, transparent 45%), radial-gradient(circle at 40% 80%, rgba(38, 128, 172, 0.5) 0%, transparent 40%), radial-gradient(circle at 90% 70%, rgba(224, 176, 144, 0.4) 0%, transparent 35%), radial-gradient(circle at 60% 10%, rgba(95, 165, 200, 0.4) 0%, transparent 30%), radial-gradient(circle at 10% 90%, rgba(240, 190, 160, 0.3) 0%, transparent 25%), linear-gradient(135deg, #2E8FD9 0%, #4AA5E5 30%, #66BBF0 60%, #E0B090 100%);
  margin: 0 0 1em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.16em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  overflow: hidden;
}
.main-subpage h1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 30%), radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 25%), radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.06) 0%, transparent 20%);
  pointer-events: none;
}
@media screen and (max-width: 957px) {
  .main-subpage h1 {
    height: 120px;
    font-size: 24px;
    letter-spacing: 0.1em;
    padding: 0 15px;
  }
}
.main-subpage h2 {
  font-size: 32px;
  margin-bottom: 2em;
  letter-spacing: 0.06em;
}
.main-subpage h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(45deg, #2c3e50, #7f8c8d);
  margin: 0.8em auto 0;
}
@media screen and (max-width: 957px) {
  .main-subpage h2 {
    font-size: 22px;
    margin-bottom: 1.5em;
  }
}
.main-subpage section {
  width: 100vw;
  padding: 2em 2em 3em;
  border-bottom: solid 1px #aaa;
}
.main-subpage section:nth-child(odd) {
  background: #fafafa;
}
.main-subpage section:nth-child(even) {
  background: #fff;
}
@media screen and (max-width: 957px) {
  .main-subpage {
    padding-top: 56px;
  }
  .main-subpage section {
    padding: 1.5em 20px 2em;
  }
}

.tac {
  text-align: center;
}
.tac img {
  display: inline-block;
}

.tar {
  text-align: right;
}

.mb1 {
  margin-bottom: 1em;
}

.mb2 {
  margin-bottom: 2em;
}

.mb4 {
  margin-bottom: 4em;
}

.mod-header {
  color: #fff;
}
.mod-header a, .mod-header a:link, .mod-header a:visited {
  color: #fff;
  text-decoration: none;
}
.mod-header {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  width: 100%;
}
.mod-header.top {
  position: absolute;
  top: 0;
  z-index: 1000;
}
.mod-header.top:not(.fixed) #logo img {
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 1px rgba(255, 255, 255, 0.8));
}
@media screen and (max-width: 957px) {
  .mod-header.top:not(.fixed) #logo img {
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 1px rgba(0, 0, 0, 0.3));
  }
  .mod-header.top:not(.fixed) .call {
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 0, 0, 0.3);
  }
  .mod-header.top:not(.fixed) .call img {
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 1px rgba(0, 0, 0, 0.3));
  }
  .mod-header.top:not(.fixed) .hamburger-btn span {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 0, 0, 0.3);
  }
}
.mod-header.top.fixed #logo, .mod-header.top.fixed .call {
  animation: slideDown 0.3s ease forwards;
}
.mod-header #logo {
  transition: transform 0.3s ease, opacity 0.3s ease;
  top: 0;
  background: transparent;
  padding: 20px;
  flex: none;
  align-self: flex-start;
}
.mod-header #logo img {
  display: block;
}
.mod-header .head-left {
  display: flex;
  gap: 10px;
  padding-top: 10px;
}
.mod-header .call {
  position: relative;
  top: -2px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  line-height: 1.3;
  background: linear-gradient(#0041BF, #00A5D9);
  border-radius: 12px;
  height: 80px;
  padding: 10px 26px;
  font-size: 13px;
  font-weight: 700;
}
.mod-header .phone {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 958px) {
  .mod-header.fixed #logo {
    position: fixed;
    top: 0;
    left: 20px;
    z-index: 1001;
    background: transparent;
    padding: 0;
    height: 80px;
    display: flex;
    align-items: center;
  }
  .mod-header.fixed #logo img {
    width: 150px;
    height: auto;
  }
  .mod-header.fixed .call {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    height: 80px;
    padding: 5px 20px;
    border-radius: 0;
    display: flex;
    align-items: center;
  }
  .mod-header.fixed .call img {
    width: 32px;
    height: auto;
  }
  .mod-header.fixed .call .phone {
    font-size: 26px;
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 958px) and (max-width: 1281px) {
  .mod-header.fixed #logo img {
    width: 120px;
  }
  .mod-header.fixed .call {
    padding: 5px 14px;
  }
  .mod-header.fixed .call img {
    width: 28px;
  }
  .mod-header.fixed .call .phone {
    font-size: 22px;
  }
}
@media screen and (min-width: 958px) and (max-width: 1140px) {
  .mod-header.fixed #logo img {
    width: 100px;
  }
  .mod-header.fixed .call {
    padding: 5px 10px;
    gap: 6px;
  }
  .mod-header.fixed .call img {
    width: 22px;
  }
  .mod-header.fixed .call .phone {
    font-size: 18px;
  }
  .mod-header.fixed .call > div > div:last-child {
    font-size: 10px;
  }
}
@media screen and (max-width: 957px) {
  .mod-header {
    padding: 0 15px;
    height: 56px;
    display: flex;
    align-items: center;
    background: rgba(0, 65, 191, 0.7);
    transition: all 0.3s;
  }
  .mod-header.fixed {
    position: fixed;
    width: 100%;
    z-index: 10000;
    background-color: #0041BF;
  }
  .mod-header #logo {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0;
    height: 100%;
  }
  .mod-header #logo img {
    width: 110px;
    height: auto;
  }
  .mod-header #logo.fixed {
    position: static;
  }
  .mod-header #logo.fixed img {
    width: 110px;
  }
  .mod-header .head-left {
    gap: 15px;
    display: flex;
    align-items: center;
    padding-top: 0;
    height: 56px;
  }
  .mod-header .call {
    background: none;
    border-radius: 8px;
    display: flex;
    gap: 6px;
    justify-content: space-between;
    align-items: center;
    line-height: 1.2;
    height: auto;
    padding: 8px 12px;
    font-size: 9px;
    font-weight: 700;
  }
  .mod-header .call img {
    width: 24px;
    height: auto;
    flex-shrink: 0;
  }
  .mod-header .call .phone {
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    line-height: 1.1;
    margin-bottom: 2px;
    color: #fff !important;
  }
  .mod-header .call > div {
    min-width: 0;
    color: #fff !important;
  }
  .mod-header .call > div > div {
    color: #fff !important;
  }
  .mod-header .call > div > div:last-child {
    font-size: 8px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff !important;
  }
}

.sec-mv {
  width: 100%;
  height: min(690px, 100vh - 180px);
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1281px) {
  .sec-mv {
    margin-top: 80px;
    height: 610px;
  }
}
.sec-mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.sec-mv img.active {
  opacity: 1;
}

.sec-service {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px !important;
  padding-top: 60px;
}
@media screen and (max-width: 957px) {
  .sec-service {
    padding-top: 0;
  }
}

#gnav {
  z-index: 999;
  background: #fff;
}
#gnav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 0 max(300px, (100vw - 1080px) / 2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
@media screen and (min-width: 958px) and (max-width: 1281px) {
  #gnav.fixed {
    padding: 0;
  }
  #gnav.fixed .nav-global {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 230px 0 160px;
  }
  #gnav.fixed .nav-global a {
    font-size: 17px;
  }
}
@media screen and (min-width: 958px) and (max-width: 1140px) {
  #gnav.fixed {
    padding: 0;
  }
  #gnav.fixed .nav-global {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 190px 0 130px;
  }
  #gnav.fixed .nav-global a {
    font-size: 15px;
  }
}
@media screen and (max-width: 957px) {
  #gnav.fixed {
    display: contents;
  }
}

.nav-global {
  display: flex;
  justify-content: space-evenly;
  padding: 0;
  width: 100%;
  max-width: 1080px;
  height: 80px;
  margin: 0 auto;
}
.nav-global li {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-global a {
  font-weight: 700;
  text-decoration: none;
  color: #333;
  font-size: 20px;
  border-bottom: solid 2px transparent;
}
.nav-global a.current {
  color: #00A5D9;
  border-bottom-color: #00A5D9;
}
@media screen and (max-width: 957px) {
  .nav-global {
    position: fixed;
    top: 0;
    right: -233px;
    width: 233px;
    height: 100vh;
    background: rgba(0, 65, 191, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 56px 0 20px;
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
  }
  .nav-global.active {
    right: 0;
  }
  .nav-global li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-global li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-global a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-bottom: none;
    padding: 15px 25px;
    display: block;
    transition: background-color 0.3s ease;
    width: 100%;
  }
  .nav-global a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .nav-global a.current {
    color: #FFD54F;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: none;
  }
}

.mod-message, .sec-service-fixed .fixed-intro {
  margin-bottom: 3em;
  padding: 2em;
  background: linear-gradient(135deg, #f8f9fc 0%, #e8f4f8 100%);
  border-radius: 12px;
}
.mod-message p, .sec-service-fixed .fixed-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.mod-inner-content {
  width: 780px;
  margin: 0 auto;
}
@media screen and (max-width: 957px) {
  .mod-inner-content {
    width: 100%;
    max-width: none;
    padding: 0 15px;
  }
}

.mod-top-panel {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  font-size: 24px;
  color: #fff;
}
.mod-top-panel img {
  height: auto;
}
.mod-top-panel li {
  display: flex;
  align-items: center;
  width: calc(50% - 1px);
  padding: 30px 20px 30px min(4vw, 70px);
  background: linear-gradient(#0041BF, #00A5D9);
  font-weight: 700;
  position: relative;
}
.mod-top-panel h2 {
  font-size: 32px;
}
.mod-top-panel a {
  text-decoration: none;
  color: #fff;
}
.mod-top-panel .phone > a::after, .mod-top-panel .static > a::after, .mod-top-panel .reserve > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mod-top-panel .phone:hover, .mod-top-panel .static:hover, .mod-top-panel .reserve:hover {
  opacity: 0.85;
  cursor: pointer;
}
.mod-top-panel .horizon {
  display: flex;
  align-items: center;
  justify-content: start;
}
.mod-top-panel .go {
  font-size: 24px;
  line-height: 32px;
}
.mod-top-panel .go h2 {
  font-size: 16px;
}
@media screen and (min-width: 958px) {
  .mod-top-panel .go > img {
    width: min(11.71875vw, 150px);
    height: auto;
    margin-right: min(4.6875vw, 60px);
  }
}
.mod-top-panel .phone {
  font-size: 20px;
  line-height: 42px;
}
.mod-top-panel .phone h2 {
  font-size: 24px;
  margin-bottom: 4px;
}
@media screen and (min-width: 958px) {
  .mod-top-panel .phone .icon {
    width: min(9.21875vw, 118px);
    height: auto;
    margin-right: min(2.96875vw, 38px);
  }
  .mod-top-panel .phone strong {
    font-size: min(3.28125vw, 42px);
  }
}
.mod-top-panel .fd {
  margin-right: 0.5em;
}
.mod-top-panel .static {
  font-size: 20px;
}
.mod-top-panel .static h2 {
  font-size: 32px;
  margin-bottom: 8px;
}
@media screen and (min-width: 958px) {
  .mod-top-panel .static img {
    width: min(11.5625vw, 148px);
    height: auto;
    margin-right: min(4.6875vw, 60px);
  }
}
@media screen and (min-width: 958px) {
  .mod-top-panel .reserve img {
    width: min(8.984375vw, 115px);
    height: auto;
    margin-right: min(3.125vw, 40px);
  }
}

.sec-payments {
  border-bottom: solid 1px #999;
  padding: 80px 0;
  margin-top: 80px;
  border-top: solid 1px #ccc;
  text-align: center;
}
.sec-payments h2 {
  font-size: 38px;
  margin-bottom: 1.5em;
}
.sec-payments .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2em;
}
.sec-payments .payment-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 2em;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.sec-payments .payment-cards img {
  width: calc((100% - 40px) / 3);
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 957px) {
  .sec-payments {
    margin-top: 0;
  }
  .sec-payments .payment-cards {
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
  }
  .sec-payments .payment-cards img {
    width: 100%;
    max-width: 500px;
  }
}

.sec-consideration {
  border-bottom: solid 1px #999;
  padding: 80px 0;
}
.sec-consideration h2 {
  font-size: 38px;
  margin-bottom: 1.5em;
}

.mod-consideration {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px !important;
  display: flex;
  justify-content: center;
  gap: 80px;
  position: relative;
  left: -55px;
}
.mod-consideration li {
  text-align: center;
}
.mod-consideration .image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  margin-bottom: 1em;
}

.sec-stop {
  border-bottom: solid 1px #999;
  padding: 80px 0;
}
.sec-stop h2 {
  font-size: 38px;
  margin-bottom: 1.5em;
}

.mod-stops {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.mod-stops li {
  text-align: center;
  font-weight: bold;
}
.mod-stops iframe {
  margin-top: 1em;
}

.sec-news {
  border-bottom: solid 1px #999;
  padding: 80px 0;
}
.sec-news h2 {
  font-size: 38px;
  margin-bottom: 1.5em;
}

.mod-news {
  width: 900px;
  margin: 0 auto;
  border: solid 1px #0041BF;
  padding: 2em;
}
.mod-news li {
  border-bottom: solid 1px #eee;
  padding: 1em 0;
}
.mod-news .date {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.5em;
}
.mod-news .news-body p {
  margin: 0;
}
.mod-news .news-body a {
  color: #1a73e8;
  text-decoration: underline;
}

footer {
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(#0041BF, #00A5D9);
}
@media screen and (min-width: 958px) {
  footer {
    padding: 80px;
    justify-content: center;
    gap: 80px;
  }
}
@media screen and (max-width: 957px) {
  footer {
    flex-direction: column;
    padding: 40px 15px;
    gap: 30px;
  }
}

.footer-nav {
  color: #fff;
}
.footer-nav a, .footer-nav a:link, .footer-nav a:visited {
  color: #fff;
  text-decoration: none;
}
.footer-nav {
  display: flex;
  height: 300px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
.footer-nav li:first-of-type {
  font-weight: 700;
}
@media screen and (min-width: 958px) {
  .footer-nav {
    max-width: 800px;
    gap: min(5vw, 60px);
    justify-content: space-between;
  }
}
@media screen and (max-width: 957px) {
  .footer-nav {
    display: none;
    width: 100%;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    order: 1;
    line-height: 1.8;
  }
  .footer-nav ul {
    flex: 1;
    min-width: calc(50% - 7.5px);
  }
  .footer-nav ul li:first-of-type {
    font-weight: 700;
    margin-bottom: 0.5em;
  }
  .footer-nav ul li a {
    font-size: 13px;
    line-height: 1.6;
  }
}

.footer-company {
  width: 300px;
  color: #fff;
  font-size: 14px;
  line-height: 2;
}
.footer-company .haisya {
  margin-top: 1em;
  padding: 1em;
  line-height: 28px;
  background-color: #f0f0f0;
  color: #333;
}
.footer-company .fd {
  position: relative;
}
.footer-company .tel {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 957px) {
  .footer-company {
    width: 100%;
    order: 2;
    text-align: center;
  }
  .footer-company .haisya {
    margin-top: 1em;
    padding: 1em 15px;
  }
  .footer-company .haisya .tel {
    font-size: 20px;
  }
}

.copyright {
  width: 100vw;
  text-align: center;
  color: #fff;
  padding-top: 2em;
  font-size: 13px;
}

.company-info {
  width: 100%;
  max-width: 800px;
  margin: 2em auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.company-info th, .company-info td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}
.company-info th {
  font-weight: 500;
  color: #333;
  width: 30%;
  font-size: 16px;
  position: relative;
}
.company-info td {
  font-size: 16px;
  color: #333;
  background: #fff;
}
.company-info td a {
  color: #00A5D9;
  text-decoration: none;
  font-weight: 500;
}
.company-info td a:hover {
  text-decoration: underline;
}
.company-info tr:last-child th, .company-info tr:last-child td {
  border-bottom: none;
}
.company-info tr:hover {
  background: rgba(0, 165, 217, 0.02);
}

.sec-philosophy .philosophy-list {
  max-width: 800px;
  margin: 0 auto;
}
.sec-philosophy .philosophy-list li {
  position: relative;
  padding: 1.2em 0 1.2em 2em;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  line-height: 1.6;
}
.sec-philosophy .philosophy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: linear-gradient(#0041BF, #00A5D9);
  border-radius: 50%;
}
.sec-philosophy .philosophy-list li:last-child {
  border-bottom: none;
}

.sec-dog-support {
  border: solid 1px #0041BF !important;
  margin: 3em auto;
}
.sec-dog-support .support-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 780px;
  margin: 2em auto;
  align-items: center;
}
.sec-dog-support .support-images {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .sec-dog-support .support-images {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}
.sec-dog-support .support-images img {
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sec-dog-support .support-images img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .sec-dog-support .support-images img {
    width: 100%;
    max-width: 400px;
    height: 250px;
  }
}
.sec-dog-support .support-text {
  text-align: center;
  max-width: 800px;
}
.sec-dog-support .support-text p {
  margin-bottom: 1em;
  line-height: 1.8;
  font-size: 16px;
}
.sec-dog-support .support-text p:last-child {
  margin-bottom: 0;
}
.sec-dog-support .support-text strong {
  color: #0041BF;
  font-size: 1.2em;
  font-weight: 700;
}
@media screen and (min-width: 958px) {
  .sec-dog-support {
    width: 780px !important;
    padding: 80px !important;
  }
}
@media screen and (max-width: 957px) {
  .sec-dog-support {
    width: auto !important;
    margin: 2em 1em !important;
  }
  .sec-dog-support h2 {
    font-size: 18px;
  }
  .sec-dog-support p {
    text-align: left;
  }
}

.nav-service {
  width: 780px;
  margin: 0 auto 4em;
  padding: 2em;
  background: #f8f9fa;
  border-radius: 8px;
  position: relative;
}
.nav-service ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  padding: 0;
  margin: 0;
}
.nav-service li {
  min-width: 0;
}
.nav-service a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0041BF;
  border: 2px solid #0041BF;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  line-height: 1.3;
  word-break: keep-all;
  cursor: pointer;
  height: 80px;
  padding: 10px 15px;
  position: relative;
  box-shadow: 0 3px 8px rgba(0, 65, 191, 0.3);
}
.nav-service a:hover {
  background: rgb(0, 51.1151832461, 150.2);
  border-color: rgb(0, 51.1151832461, 150.2);
}
.nav-service a:active {
  transform: translateY(0);
}
.nav-service a:focus {
  outline: 2px solid rgba(0, 65, 191, 0.5);
  outline-offset: 2px;
}
@media screen and (max-width: 957px) {
  .nav-service {
    width: 100%;
    margin: 0 auto 2em;
    padding: 1em;
  }
  .nav-service ul {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
  }
  .nav-service a {
    height: 60px;
    font-size: 15px;
    padding: 8px 10px;
  }
}

.sec-service-intro {
  width: 780px;
  margin: 0 auto;
}
.sec-service-intro .haisya {
  text-align: center;
}
.sec-service-intro img {
  position: relative;
  top: 1px;
}
.sec-service-intro .pn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0.5em;
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 957px) {
  .sec-service-intro {
    width: 100%;
    padding: 0 15px;
  }
  .sec-service-intro .pn {
    font-size: 28px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .sec-service-intro .pn img {
    width: 30px;
    height: auto;
  }
}

.flow-chart {
  max-width: 780px;
  margin: 0 auto;
}
@media screen and (max-width: 957px) {
  .flow-chart {
    width: 100%;
    padding: 0 15px;
  }
}

.flow-step {
  background: #fff;
  margin-bottom: 0;
  position: relative;
}
.flow-step__header {
  color: #000;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 0;
  text-align: center;
  margin: 0;
  border: 1px solid #0041BF;
}
.flow-step__body {
  margin: 20px 20px;
  padding: 0 50px;
  border-left: solid 1px #0041BF;
  font-size: 16px;
  color: #333;
  background: #fff;
  line-height: 3;
  position: relative;
}
.flow-step__body::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  transform: translateX(-50%) rotate(45deg);
  width: 28px;
  height: 28px;
  border-right: 1px solid #0041BF;
}
.flow-step--pickup .flow-step__body {
  border-left: none;
  margin-left: 0;
}
.flow-step--pickup .flow-step__body::before {
  display: none;
}
.flow-step--customer .flow-step__header {
  background: rgba(28, 105, 255, 0.5);
}
.flow-step--operator .flow-step__header {
  background: rgba(111, 160, 255, 0.5);
}
.flow-step--vehicle .flow-step__header {
  background: rgba(186, 209, 255, 0.5);
}
.flow-step--pickup .flow-step__header {
  background: rgba(220, 232, 255, 0.5);
}
@media screen and (max-width: 957px) {
  .flow-step__header {
    font-size: 14px;
    padding: 10px 0;
  }
  .flow-step__body {
    margin: 15px 10px;
    padding: 0 20px;
    font-size: 14px;
    line-height: 2;
  }
  .flow-step__body::before {
    width: 20px;
    height: 20px;
  }
}

.sec-service-price {
  width: 780px;
  margin: 0 auto;
}
.sec-service-price h3 {
  font-size: 20px;
  margin-bottom: 1.5em;
  text-align: center;
}
.sec-service-price .price-structure-table {
  margin: 0 auto 4em;
}
.sec-service-price .price-structure-table p {
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.sec-service-price .price-structure-table .table-price {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.sec-service-price .price-structure-table .table-price th, .sec-service-price .price-structure-table .table-price td {
  padding: 0.8em 1em;
  text-align: left;
  border: 1px solid #ccc;
  vertical-align: middle;
}
.sec-service-price .price-structure-table .table-price th {
  background: #eee;
  font-weight: 600;
  font-size: 15px;
  min-width: 200px;
}
.sec-service-price .price-structure-table .table-price td {
  color: #333;
  font-size: 15px;
  background: #fff;
}
.sec-service-price .price-structure-table .table-price .price-cell {
  font-size: 16px;
  min-width: 80px;
}
.sec-service-price .price-structure-table .table-price tr:hover td:not(.category-header) {
  background: rgba(0, 165, 217, 0.02);
}
.sec-service-price .price-structure-table .table-inner {
  border-collapse: collapse;
}
.sec-service-price .price-structure-table .table-inner th {
  background-color: #0041BF;
  color: #fff;
  width: 280px;
  font-size: 15px;
}
.sec-service-price .price-structure {
  margin-bottom: 4em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}
.sec-service-price .price-structure .price-item {
  background: #f8f9fa;
  border-left: 4px solid #0041BF;
  padding: 1em 1.5em;
}
.sec-service-price .price-structure .price-item h3 {
  color: #0041BF;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.sec-service-price .price-structure .price-item p {
  line-height: 1.5;
  margin: 0;
  font-size: 14px;
}
.sec-service-price .additional-fees {
  margin-bottom: 4em;
}
.sec-service-price .additional-fees table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.sec-service-price .additional-fees table th, .sec-service-price .additional-fees table td {
  padding: 0.8em 1em;
  text-align: left;
  border: 1px solid #ccc;
  vertical-align: middle;
}
.sec-service-price .additional-fees table .category-header {
  background: #eee;
  font-weight: 600;
  text-align: center;
  font-size: 15px;
  min-width: 120px;
}
.sec-service-price .additional-fees table td {
  color: #333;
  font-size: 15px;
  background: #fff;
}
.sec-service-price .additional-fees table .price-cell {
  font-size: 16px;
  min-width: 80px;
}
.sec-service-price .additional-fees table tr:hover td:not(.category-header) {
  background: rgba(0, 165, 217, 0.02);
}
.sec-service-price .price-table h3 {
  color: #0041BF;
  font-size: 20px;
  margin-bottom: 1em;
  text-align: center;
}
.sec-service-price .price-table .table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5em;
}
.sec-service-price .price-table .table-column {
  flex: 1;
}
.sec-service-price .price-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.sec-service-price .price-table table th, .sec-service-price .price-table table td {
  padding: 0.7em 1em;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.sec-service-price .price-table table th {
  background: #f8f9fa;
  font-weight: 500;
  color: #333;
  width: 70%;
  font-size: 15px;
}
.sec-service-price .price-table table td {
  font-weight: bold;
  color: #0041BF;
  font-size: 16px;
  text-align: right;
  width: 30%;
}
.sec-service-price .price-table table tr:last-child th, .sec-service-price .price-table table tr:last-child td {
  border-bottom: none;
}
.sec-service-price .price-table table tr:hover {
  background: rgba(0, 165, 217, 0.05);
}
.sec-service-price .payments {
  text-align: center;
}
.sec-service-price .payments p {
  margin-bottom: 1em;
}
.sec-service-price .payment-cards {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 1em;
}
.sec-service-price .payment-cards img {
  width: calc((100% - 30px) / 3);
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 957px) {
  .sec-service-price {
    width: 100%;
    padding: 0 15px;
  }
  .sec-service-price h3 {
    font-size: 18px;
    margin-bottom: 1em;
  }
  .sec-service-price .price-structure-table .table-price th {
    min-width: 100px;
    font-size: 13px;
    padding: 0.6em 0.8em;
  }
  .sec-service-price .price-structure-table .table-price td {
    font-size: 13px;
    padding: 0.6em 0.8em;
  }
  .sec-service-price .price-structure-table .table-price .table-inner th {
    font-size: 12px;
  }
  .sec-service-price .price-structure-table .table-price .table-inner td {
    font-size: 12px;
  }
  .sec-service-price .payments .list img {
    max-width: 100%;
    height: auto;
  }
  .sec-service-price .payment-cards {
    flex-direction: column;
    align-items: center;
  }
  .sec-service-price .payment-cards img {
    width: 100%;
    max-width: 500px;
  }
}

.sec-service-fixed {
  width: 780px;
  margin: 0 auto;
}
.sec-service-fixed .price-comparison {
  margin-bottom: 4em;
}
.sec-service-fixed .price-comparison h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 2em;
  color: #0041BF;
}
.sec-service-fixed .price-comparison .comparison-card {
  background: #fff;
  border-radius: 8px;
  padding: 2.5em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #dee2e6;
}
.sec-service-fixed .price-comparison .comparison-card .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5em;
  gap: 20px;
}
.sec-service-fixed .price-comparison .comparison-card .price-item {
  flex: 1;
  text-align: center;
  padding: 1.5em;
  border-radius: 8px;
}
.sec-service-fixed .price-comparison .comparison-card .price-item.normal {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
}
.sec-service-fixed .price-comparison .comparison-card .price-item.fixed {
  background: #0041BF;
  color: #fff;
}
.sec-service-fixed .price-comparison .comparison-card .price-item .label {
  display: block;
  font-size: 14px;
  margin-bottom: 0.5em;
  font-weight: 600;
}
.sec-service-fixed .price-comparison .comparison-card .price-item .price {
  display: block;
  font-size: 24px;
  font-weight: 700;
}
.sec-service-fixed .price-comparison .comparison-card .price-item .price small {
  font-size: 12px;
  display: block;
  margin-top: 0.2em;
  opacity: 0.8;
}
.sec-service-fixed .price-comparison .comparison-card .vs {
  font-size: 18px;
  font-weight: 700;
  color: #0041BF;
  flex-shrink: 0;
}
.sec-service-fixed .price-comparison .comparison-card .savings {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #0041BF;
  background: #f0f4ff;
  padding: 1em;
  border-radius: 8px;
}
.sec-service-fixed .usage-notes {
  margin-bottom: 4em;
}
.sec-service-fixed .usage-notes h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 2em;
}
.sec-service-fixed .usage-notes .notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
}
.sec-service-fixed .usage-notes .note-card {
  padding: 1.5em 2em;
  border-right: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}
.sec-service-fixed .usage-notes .note-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 1em;
  color: #333;
  padding-bottom: 0.6em;
  border-bottom: 1px solid #eee;
}
.sec-service-fixed .usage-notes .note-card ul {
  list-style: none;
  padding: 0;
}
.sec-service-fixed .usage-notes .note-card ul li {
  padding: 0.4em 0;
  line-height: 1.7;
  font-size: 13px;
  color: #555;
}
.sec-service-fixed .usage-notes .note-card ul li + li {
  border-top: 1px solid #f5f5f5;
}
.sec-service-fixed .usage-notes .note-card ul li strong {
  color: #333;
}
.sec-service-fixed .fare-table-section h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 1em;
}
.sec-service-fixed .fare-table-section .table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.sec-service-fixed .fare-table-section .fare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.sec-service-fixed .fare-table-section .fare-table thead {
  background: linear-gradient(135deg, #0041BF 0%, #00A5D9 100%);
  color: #fff;
}
.sec-service-fixed .fare-table-section .fare-table thead th {
  padding: 1.2em 1em;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}
.sec-service-fixed .fare-table-section .fare-table thead th small {
  font-size: 12px;
  opacity: 0.9;
}
.sec-service-fixed .fare-table-section .fare-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}
.sec-service-fixed .fare-table-section .fare-table tbody tr:hover {
  background: rgba(0, 165, 217, 0.05);
}
.sec-service-fixed .fare-table-section .fare-table tbody tr td {
  padding: 1.2em 1em;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}
.sec-service-fixed .fare-table-section .fare-table tbody tr td:first-child {
  font-weight: 700;
  background: rgba(0, 65, 191, 0.05);
}
.sec-service-fixed .fare-table-section .fare-table tbody tr td .price-main {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.2em;
}
.sec-service-fixed .fare-table-section .fare-table tbody tr td .price-sub {
  font-size: 14px;
  color: #6c757d;
}
@media screen and (max-width: 957px) {
  .sec-service-fixed {
    width: 100%;
    padding: 0 15px;
  }
  .sec-service-fixed .price-comparison h3 {
    font-size: 20px;
    margin-bottom: 1.5em;
  }
  .sec-service-fixed .price-comparison .comparison-card {
    padding: 1.5em;
  }
  .sec-service-fixed .price-comparison .comparison-card .price-row {
    flex-direction: column;
    gap: 15px;
  }
  .sec-service-fixed .price-comparison .comparison-card .price-item {
    width: 100%;
  }
  .sec-service-fixed .price-comparison .comparison-card .price-item .price {
    font-size: 20px;
  }
  .sec-service-fixed .price-comparison .comparison-card .vs {
    text-align: center;
    transform: rotate(90deg);
  }
  .sec-service-fixed .price-comparison .comparison-card .savings {
    font-size: 16px;
  }
  .sec-service-fixed .usage-notes h3 {
    font-size: 20px;
  }
  .sec-service-fixed .usage-notes .notes-grid {
    grid-template-columns: 1fr;
  }
  .sec-service-fixed .usage-notes .note-card {
    padding: 1.2em 1.5em;
  }
  .sec-service-fixed .fare-table-section h3 {
    font-size: 20px;
  }
  .sec-service-fixed .fare-table-section .table-wrapper .fare-table thead th {
    padding: 0.8em 0.5em;
    font-size: 13px;
  }
  .sec-service-fixed .fare-table-section .table-wrapper .fare-table thead th small {
    font-size: 10px;
  }
  .sec-service-fixed .fare-table-section .table-wrapper .fare-table tbody td {
    padding: 0.8em 0.5em;
  }
  .sec-service-fixed .fare-table-section .table-wrapper .fare-table tbody td .price-main {
    font-size: 15px;
  }
  .sec-service-fixed .fare-table-section .table-wrapper .fare-table tbody td .price-sub {
    font-size: 12px;
  }
}

.sec-service-reserve {
  width: 780px;
  margin: 0 auto;
}
.sec-service-reserve h4 {
  font-size: 16px;
  margin-bottom: 1em;
  color: #333;
  font-weight: 600;
  border-bottom: solid #333 2px;
  display: inline-block;
}
.sec-service-reserve .reserve-intro {
  margin-bottom: 2em;
}
.sec-service-reserve .reserve-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
.sec-service-reserve .charter-details .charter-content {
  display: flex;
  gap: 3em;
  align-items: flex-start;
}
.sec-service-reserve .charter-details .fare-section {
  flex: 1;
  min-width: 0;
}
.sec-service-reserve .charter-details .fare-section .fare-card {
  margin-bottom: 0.5em;
  display: flex;
  align-items: baseline;
  gap: 1em;
}
.sec-service-reserve .charter-details .fare-section .fare-card .car-type {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  min-width: 60px;
}
.sec-service-reserve .charter-details .fare-section .fare-card .fare-amount {
  font-size: 16px;
  font-weight: 600;
  color: #0041BF;
}
.sec-service-reserve .charter-details .fare-section .fare-card .fare-amount span {
  font-size: 14px;
  color: #6c757d;
  margin-left: 0.5em;
}
.sec-service-reserve .charter-details .conditions-section {
  flex: 1;
  min-width: 0;
}
.sec-service-reserve .charter-details .conditions-section .condition-card {
  margin-bottom: 1em;
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
}
.sec-service-reserve .charter-details .conditions-section .condition-card .condition-number {
  color: #0041BF;
  font-weight: 600;
  font-size: 14px;
  min-width: 20px;
}
.sec-service-reserve .charter-details .conditions-section .condition-card .condition-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
.sec-service-reserve .charter-details .conditions-section .condition-card .condition-text strong {
  color: #333;
  font-weight: 600;
}
.sec-service-reserve .charter-details .conditions-section .condition-card .condition-text small {
  color: #6c757d;
  font-size: 13px;
  display: block;
  margin-top: 0.2em;
}
@media screen and (max-width: 957px) {
  .sec-service-reserve {
    width: 100%;
    padding: 0 15px;
  }
  .sec-service-reserve h4 {
    font-size: 14px;
  }
  .sec-service-reserve .reserve-intro {
    margin-bottom: 1.5em;
  }
  .sec-service-reserve .reserve-intro p {
    font-size: 14px;
  }
  .sec-service-reserve .charter-details .charter-content {
    flex-direction: column;
    gap: 2em;
  }
  .sec-service-reserve .charter-details .fare-section .fare-card .car-type {
    font-size: 13px;
  }
  .sec-service-reserve .charter-details .fare-section .fare-card .fare-amount {
    font-size: 15px;
  }
  .sec-service-reserve .charter-details .fare-section .fare-card .fare-amount span {
    font-size: 13px;
  }
  .sec-service-reserve .charter-details .conditions-section .condition-card .condition-text {
    font-size: 13px;
  }
  .sec-service-reserve .charter-details .conditions-section .condition-card .condition-text small {
    font-size: 12px;
  }
}

.vehicle-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto 2em;
  padding: 0 16px;
}
.vehicle-gallery img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
@media screen and (max-width: 957px) {
  .vehicle-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media screen and (max-width: 600px) {
  .vehicle-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.vehicle-carousel {
  max-width: 890px;
  margin: 0 auto 2em;
}
.vehicle-carousel .carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.vehicle-carousel .carousel-container .carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.vehicle-carousel .carousel-container .carousel-track .carousel-slide {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  background: #f5f5f5;
}
.vehicle-carousel .carousel-container .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  font-family: Arial, sans-serif;
}
.vehicle-carousel .carousel-container .carousel-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}
.vehicle-carousel .carousel-container .carousel-btn.carousel-btn-prev {
  left: 15px;
}
.vehicle-carousel .carousel-container .carousel-btn.carousel-btn-next {
  right: 15px;
}
.vehicle-carousel .carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}
.vehicle-carousel .carousel-indicators .indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  padding: 0;
  margin: 0;
}
.vehicle-carousel .carousel-indicators .indicator.active {
  background: #0041BF;
  border-color: #0041BF;
}
.vehicle-carousel .carousel-indicators .indicator:hover {
  border-color: #00A5D9;
}

.sec-taxi-classic h2 {
  font-size: 22px;
  text-align: center;
}
.sec-taxi-classic img {
  display: inline;
  width: 100%;
  height: auto;
}
.sec-taxi-classic .list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.sec-taxi-classic .list > div {
  margin-bottom: 4em;
  text-align: center;
  width: calc(50% - 10px);
}
@media screen and (max-width: 957px) {
  .sec-taxi-classic .list > div {
    width: 100%;
    margin: 0 auto 4em;
  }
}

.qa-section {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px !important;
}

.qa-item {
  margin-bottom: 2px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.qa-item:last-child {
  margin-bottom: 0;
}

.qa-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5em 2em;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #dee2e6;
}
.qa-question:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}
.qa-question h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  flex: 1;
  padding-right: 1em;
}

.qa-icon {
  font-size: 24px;
  font-weight: 300;
  color: #0041BF;
  transition: transform 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 65, 191, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
}

.qa-answer-content {
  padding: 2em;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}
.qa-answer-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.qa-item.active .qa-question {
  background: linear-gradient(135deg, #00A5D9 0%, #0041BF 100%);
}
.qa-item.active .qa-question h3 {
  color: #fff;
}
.qa-item.active .qa-icon {
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.qa-item.active .qa-answer {
  max-height: 500px;
}
.qa-item.active .qa-answer-content {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 957px) {
  .h1-recruit {
    margin: 0 !important;
  }
}

.sec-recruit-intro {
  background: #f7f7f7;
  border: none;
  border-radius: 0;
  padding: 40px 0;
}
.sec-recruit-intro .mod-inner-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
}
.sec-recruit-intro .recruit-hero {
  text-align: left;
  margin-bottom: 1em;
  font-weight: 700;
}
.sec-recruit-intro .recruit-hero p {
  font-size: 1em;
  color: #2d3a4a;
  margin: 0;
}
.sec-recruit-intro .target-audience {
  width: 290px;
  margin: 2em auto 1.2em;
}
.sec-recruit-intro .target-audience .audience-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0.2em;
}
.sec-recruit-intro .target-audience .audience-list li {
  position: relative;
  padding: 0.3em 0 0.3em 1.4em;
  font-size: 1em;
  color: #222;
  background: none;
  line-height: 1.7;
}
.sec-recruit-intro .target-audience .audience-list li::before {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  background: #FFA94D;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.9em;
}
.sec-recruit-intro .company-features {
  background: linear-gradient(135deg, #FFD54F 0%, #FFCC02 50%, #FFB300 100%);
  display: block;
  font-size: 1em;
  color: #222;
  line-height: 1.7;
  border-radius: 8px;
  padding: 2em;
  box-sizing: border-box;
  width: 680px;
  margin: 2em auto 1.2em;
}
.sec-recruit-intro .company-features strong {
  color: #222;
  font-weight: 700;
  background: none;
  font-size: 1em;
  letter-spacing: 0.01em;
  display: block;
  margin-top: 0.7em;
}
.sec-recruit-intro .company-features br {
  display: block;
  margin-bottom: 0.3em;
  content: "";
}
@media screen and (max-width: 957px) {
  .sec-recruit-intro .company-features {
    width: 100%;
  }
}

.philosophy-content {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f2f5 100%);
  border-radius: 8px;
  padding: 3.2em 2.8em;
  text-align: center;
  line-height: 3;
}
.philosophy-content p {
  font-size: 1em;
  margin-bottom: 2em;
  color: #222;
}
.philosophy-content strong {
  color: #222;
  font-weight: 700;
}
@media screen and (max-width: 957px) {
  .philosophy-content {
    padding: 2em 0;
    background: none;
    text-align: justify;
  }
  .philosophy-content br {
    display: none;
  }
}

.sec-recruit-positions .positions-accordion {
  max-width: 900px;
  margin: 0 auto;
}
.sec-recruit-positions .positions-accordion .position-item {
  margin-bottom: 0;
  border: 1px solid #e0e0e0;
  border-bottom: none;
}
.sec-recruit-positions .positions-accordion .position-item:last-child {
  border-bottom: 1px solid #e0e0e0;
}
.sec-recruit-positions .positions-accordion .position-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5em 2em;
  cursor: pointer;
  background: #fff;
}
.sec-recruit-positions .positions-accordion .position-header:hover {
  background: #fafafa;
}
.sec-recruit-positions .positions-accordion .position-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #222;
  flex: 1;
  letter-spacing: 0.02em;
}
.sec-recruit-positions .positions-accordion .position-header .position-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFB300;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
  border: none;
  transition: all 0.2s ease;
}
.sec-recruit-positions .positions-accordion .position-header .position-icon::before {
  content: "+";
}
.sec-recruit-positions .positions-accordion .position-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}
.sec-recruit-positions .positions-accordion .position-content .position-content-inner {
  padding: 0 2em 2em;
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
}
@media screen and (max-width: 957px) {
  .sec-recruit-positions .positions-accordion .position-content .position-content-inner {
    padding: 0;
  }
}
.sec-recruit-positions .positions-accordion .position-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}
.sec-recruit-positions .positions-accordion .position-table tr {
  border-bottom: 1px solid #f0f0f0;
}
.sec-recruit-positions .positions-accordion .position-table tr:last-child {
  border-bottom: none;
}
.sec-recruit-positions .positions-accordion .position-table th {
  font-weight: 500;
  color: #222;
  width: 25%;
  font-size: 14px;
  padding: 1em 1.2em;
  text-align: left;
  background: #f8f8f8;
  vertical-align: top;
  letter-spacing: 0.02em;
}
.sec-recruit-positions .positions-accordion .position-table td {
  font-size: 14px;
  color: #666;
  background: #fff;
  padding: 1em 1.2em;
  line-height: 1.6;
  vertical-align: top;
}
.sec-recruit-positions .positions-accordion .position-table td.salary-highlight {
  font-weight: 500;
  color: #222;
  font-size: 15px;
}
@media screen and (max-width: 957px) {
  .sec-recruit-positions .positions-accordion .position-table {
    margin-top: 0;
  }
}
.sec-recruit-positions .positions-accordion .position-item.active .position-header {
  background: #f5f5f5;
}
.sec-recruit-positions .positions-accordion .position-item.active .position-header .position-icon {
  background: #FFB300;
  color: #fff;
}
.sec-recruit-positions .positions-accordion .position-item.active .position-header .position-icon::before {
  content: "−";
}
.sec-recruit-positions .positions-accordion .position-item.active .position-content {
  max-height: 800px;
}
.sec-recruit-positions .positions-accordion .position-item.active .position-content .position-content-inner {
  opacity: 1;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  top: -1px;
  z-index: 1002;
  gap: 5px;
}
.hamburger-btn span {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
  display: block;
}
.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.scroll-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(0, 65, 191, 0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: rgb(0, 65, 191);
  transform: scale(1.1);
}
.scroll-to-top:active {
  transform: scale(0.95);
}

@media screen and (max-width: 958px) {
  .hamburger-btn {
    display: flex;
  }
  body.nav-open {
    overflow: hidden;
  }
  body.nav-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0px;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .sec-mv {
    height: 40vh;
  }
  .sec-service {
    width: 100% !important;
    max-width: none !important;
    margin: 0;
    padding: 0;
  }
  .mod-top-panel {
    width: 100% !important;
    max-width: none !important;
    margin: 0;
    padding: 0;
    flex-direction: column;
    gap: 0;
  }
  .mod-top-panel li {
    width: 100%;
    padding: 22px 15px 22px max(50vw - 170px, 20px);
    margin: 0;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
  .mod-top-panel li h2 {
    font-size: 19px !important;
    margin-bottom: 8px !important;
  }
  .mod-top-panel li > img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 20px !important;
  }
  .mod-top-panel li > div {
    flex: 1;
    min-width: 0;
  }
  .mod-top-panel li .ios {
    width: auto;
    height: 30px;
  }
  .mod-top-panel li .android {
    width: auto;
    height: 44px;
  }
  .mod-top-panel .go {
    font-size: 13px;
    line-height: 1.3;
  }
  .mod-top-panel .go h2 {
    font-size: 18px;
  }
  .mod-top-panel .go .wrap {
    display: block;
  }
  .mod-top-panel .go .horizon {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
  }
  .mod-top-panel .go .horizon a {
    display: inline-block;
  }
  .mod-top-panel .phone {
    line-height: 32px !important;
  }
  .mod-top-panel .phone strong {
    font-size: 28px;
    line-height: 1;
  }
  .mod-top-panel .phone .fd {
    width: auto;
    height: 20px;
    margin-right: 0.5em !important;
  }
  .sec-payments {
    padding: 40px 15px;
  }
  .sec-payments h2 {
    font-size: 24px;
    margin-bottom: 1em;
  }
  .sec-payments .list {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
  .sec-payments .list img {
    max-width: 100%;
    height: auto;
  }
  .sec-payments .go {
    width: 100px;
  }
  .sec-consideration {
    padding: 40px 15px;
  }
  .sec-consideration h2 {
    font-size: 24px;
    margin-bottom: 1em;
  }
  .mod-consideration {
    width: 100% !important;
    max-width: none !important;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    left: 0;
    padding: 0 15px;
  }
  .mod-consideration li {
    text-align: center;
  }
  .mod-consideration .image {
    height: 100px;
    margin-bottom: 0.5em;
  }
  .mod-consideration .image img {
    width: auto;
    height: 86px;
  }
  .mod-consideration p {
    font-size: 14px;
    line-height: 1.5;
  }
  .sec-stop {
    padding: 40px 15px;
  }
  .sec-stop h2 {
    font-size: 24px;
    margin-bottom: 1em;
  }
  .mod-stops {
    flex-direction: column;
    gap: 30px;
  }
  .mod-stops li {
    width: 100%;
  }
  .mod-stops li iframe {
    width: 100%;
    height: 250px;
    max-width: 400px;
  }
  .sec-news {
    padding: 40px 15px;
  }
  .sec-news h2 {
    font-size: 24px;
    margin-bottom: 1em;
  }
  .mod-news {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.5em 15px;
  }
  .mod-news li {
    padding: 1em 0;
  }
  .mod-news .date {
    font-size: 14px;
  }
  .mod-news p {
    font-size: 14px;
    line-height: 1.6;
  }
  .mobile-call-btn {
    display: flex;
  }
  .scroll-to-top {
    display: block;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
