@charset "utf-8";

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

/* v-cloak処理 */
[v-cloak] {
  display: none;
}

/* Googleフォント　Noto Sans JP */
.font-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* ======================================================= */
/* custom css */

/* backgroud-image top bottom */
.bg-top-primary {
  width: 100%;
  background-repeat: repeat-x;
  background-position: top left;
  background-size: auto 265px;
}

.bg-bottom-primary {
  width: 100%;
  background-repeat: repeat-x;
  background-position: bottom left;
  background-size: auto 265px;
}

@media screen and (max-width: 768px) {
  .bg-top-primary {
    background-size: auto 13.8vw;
  }

  .bg-bottom-primary {
    background-size: auto 13.8vw;
  }
}

/* flex-box */
.flex-primary,
.flex-morning {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .flex-morning {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .flex-primary {
    flex-direction: column;
  }
}

/* box-shadow */
.shadow-date {
  box-shadow: 5px 5px 15px #5b5b5b;
}

.shadow-lead {
  box-shadow: 3px 3px 10px #b3b3b3;
}

.shadow-btn {
  box-shadow: 5px 5px 10px #808080;
}

/* head-icon */
.before-face-icon::before {
  content: '';
  display: inline-block;
  width: clamp(30px, 5.15vw, 66px);
  height: clamp(30px, 5.15vw, 66px);
  background-image: url(../images/icon_event01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: sub;
}

.heading-bus-icon::before {
  content: '';
  display: inline-block;
  width: clamp(40px, 10.4vw, 80px);
  height: clamp(20px, 5.2vw, 40px);
  background-image: url(../images/icon_bus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: sub;
}

.after-face-icon::after {
  content: '';
  display: inline-block;
  width: clamp(30px, 5.15vw, 66px);
  height: clamp(30px, 5.15vw, 66px);
  background-image: url(../images/icon_query-head.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: sub;
}

/* table */
.table-head {
  color: #0067b2;
  font-size: clamp(0.875rem, 2.6vw, 1.25rem);
  font-weight: 600;
  background-color: #ffff66;
  width: clamp(75px, 15.6vw, 120px);
  height: clamp(25px, 5.2vw, 40px);
  border-radius: 20px;
}

.span-purple {
  font-size: clamp(0.875rem, 2.3vw, 1.125rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  background-color: #c18bd5;
  padding: 6px 12px;
  border-radius: 5px;
  margin: 0 5px;
}

/* google map */
.map-style {
  width: clamp(320px, 95vw, 1000px);
  aspect-ratio: 5/2;
  margin: 0 auto clamp(30px, 8vw, 130px);
}

/* bus event under-border */
.custom-border::after {
  content: '';
  width: 90%;
  height: 2px;
  background: #0067b2;
  position: absolute;
  bottom: 0;
  left: 5%;
}

/* query head icon */
.img-background {
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: center left;
}

/* query Q&A icon */
.img-question,
.img-answer {
  background-repeat: no-repeat;
  background-size: 25px 25px;
  background-position: top 40% left;
  padding-left: 40px;
}

@media screen and (max-width: 768px) {
  .img-question,
  .img-answer {
    background-size: 20px 20px;
    padding-left: 25px;
  }
}

.img-question {
  background-image: url(../images/icon_q.svg);
  position: relative;
}

.img-answer {
  background-image: url(../images/icon_a.svg);
}

/* query dashed line */
.target::after {
  content: '';
  display: block;
  width: var(--underline-width, 100%);
  border-bottom: 2px dashed #0067b2;
  position: absolute;
  bottom: -5px;
  left: -2.8%;
}

@media screen and (max-width: 768px) {
  .target::after {
    left: -3.1%;
  }
}

/* tel-icon */
.before-tel-icon::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 19px;
  background-image: url(../images/tel-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: center;
}

/* hover animation */
.cta-btn a {
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
}

.cta-btn a:hover:active {
  transform: translateY(-2px) scale(0.95);
}

@media (hover: hover) {
  .cta-btn a:hover {
    background-color: #00e3d0;
    transform: translateY(-5px) scale(1.0);
    box-shadow: 10px 10px 15px #808080;
  }
}

.btn-top {
  transition: transform 0.3s ease;
  will-change: transform;
}

.btn-top a {
  transition: opacity 0.3s ease;
}

.btn-top a:hover:active {
  transform: translateY(-2px) scale(0.95);
}

@media (hover: hover) {
  .btn-top:hover {
    transform: translateY(-5px) scale(1.0);
  }

  .btn-top a:hover {
    opacity: 0.9;
  }
}

@media screen and (min-width: 768px) {
  /* 電話番号　スマホのみ */
  a[href*='tel:'] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* /end custom css */
/* ======================================================= */