@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.8rem;
  line-height: 1.75;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
  position: relative;
  text-align: justify;
}
@media screen and (max-width: 840px) {
  body {
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
  }
}
body.open {
  overflow: hidden;
}

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

p {
  text-align: justify;
  position: relative;
}

.inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  width: 95%;
}

.detail {
  font-size: 1.2rem;
  letter-spacing: 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 77, 160, 0.25);
  border-color: #004da0 !important;
}

select:focus {
  color: #004da0;
}

select option:checked {
  background-color: #004da0;
  color: #fff;
}

main {
  overflow-x: clip;
}

section {
  padding: 50px 0;
}
@media screen and (max-width: 540px) {
  section {
    padding: 25px 0;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 540px) {
  .sp-only {
    display: block;
  }
}

/*-------------------------*/
body {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #3f5665;
}

body,
main {
  z-index: -1;
  position: relative;
}

header {
  padding: 25px;
  background-color: #fff;
}
@media screen and (max-width: 840px) {
  header {
    padding-right: 90px;
  }
}
header .inner {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  max-width: 95%;
  align-items: center;
}

.main_logo {
  width: 240px;
}

.menu {
  flex: 1;
  margin-right: 30px;
}
@media screen and (max-width: 840px) {
  .menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(66, 123, 185, 0.9);
    z-index: 100;
    flex: none;
    margin: 0;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: all ease 0.3s;
    padding: 50px;
  }
  .menu.open {
    pointer-events: all;
    opacity: 1;
  }
}
@media screen and (max-width: 540px) {
  .menu {
    padding: 20px;
  }
}
.menu .ft_bottom {
  display: none;
}
@media screen and (max-width: 840px) {
  .menu .ft_bottom {
    display: flex;
  }
}

.menu_wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
  justify-content: end;
  align-items: center;
}
.menu_wrap > a,
.menu_wrap > .has_children > .parent_link {
  color: #333333;
  font-size: 1.5rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  transition: color 0.2s ease, border-color 0.2s ease;
}
@media screen and (min-width: 841px) {
  .menu_wrap > a:hover,
  .menu_wrap > .has_children > .parent_link:hover {
    color: #004da0;
  }
}
.menu_wrap .has_children {
  position: relative;
}
.menu_wrap .has_children > .parent_link {
  display: block;
  position: relative;
  padding-right: 16px;
}
.menu_wrap .has_children > .parent_link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}
.menu_wrap .child_menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 21;
}
.menu_wrap .child_menu a {
  color: #333333;
  font-size: 1.4rem;
  border: 0;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.menu_wrap .child_menu a:hover, .menu_wrap .child_menu a:focus-visible {
  color: #004da0;
}
@media screen and (min-width: 841px) {
  .menu_wrap .has_children {
    position: static;
  }
  .menu_wrap .has_children.open > .parent_link {
    color: #004da0;
    border-bottom-color: transparent;
  }
  .menu_wrap .has_children.open > .parent_link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 16px;
    height: 4px;
    bottom: -35px;
    background-color: #004da0;
    pointer-events: none;
  }
  .menu_wrap .child_menu {
    position: absolute;
    left: 50%;
    right: auto;
    top: calc(100% + 23px);
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: flex-end;
    gap: clamp(12px, 2vw, 40px);
    box-sizing: border-box;
    margin: 0;
    padding: 22px clamp(20px, 4vw, 48px) 26px;
    background-color: #fff;
    border: 0;
    border-top: 1px solid #e5edf5;
    box-shadow: 0 8px 24px rgba(1, 42, 63, 0.08);
  }
  .menu_wrap .child_menu a {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    white-space: normal;
    padding: 0 8px 0 0;
    text-decoration: none;
  }
  .menu_wrap .child_menu a::after {
    content: "";
    align-self: stretch;
    height: 2px;
    margin-top: 10px;
    background: linear-gradient(to right, #004da0 0%, #004da0 10%, #ac8e4b 10%, #ac8e4b 100%);
  }
  .menu_wrap .child_menu a:hover::after, .menu_wrap .child_menu a:focus-visible::after {
    background: #004da0;
  }
  .menu_wrap .has_children.open .child_menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media screen and (max-width: 840px) {
  .menu_wrap {
    flex-flow: column;
    gap: 30px;
    justify-content: start;
    width: 100%;
    padding-top: 80px;
  }
  .menu_wrap > a,
  .menu_wrap > .has_children > .parent_link {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 3rem;
    font-weight: normal;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
  }
  .menu_wrap .has_children {
    width: 100%;
  }
  .menu_wrap .has_children > .parent_link::after {
    transition: transform 0.2s ease;
  }
  .menu_wrap .has_children.open > .parent_link::after {
    transform: translateY(-35%) rotate(-135deg);
  }
  .menu_wrap .child_menu {
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: static;
    flex-flow: column;
    gap: 12px;
    padding: 16px 0 0;
  }
  .menu_wrap .child_menu a {
    color: #fff;
    font-size: 2rem;
    border-bottom: 0;
    padding-bottom: 0;
  }
  .menu_wrap .has_children.open .child_menu {
    display: flex;
  }
}
@media screen and (max-width: 540px) {
  .menu_wrap {
    gap: 10px;
  }
  .menu_wrap > a,
  .menu_wrap > .has_children > .parent_link {
    font-size: 1.8rem;
  }
  .menu_wrap .child_menu a {
    font-size: 1.5rem;
  }
}

.menu_btn {
  padding: 11px 24px;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.menu_btn.recruit {
  background-color: #1a3666;
  border-color: #1a3666;
}
@media screen and (min-width: 841px) {
  .menu_btn.recruit:hover {
    background-color: #fff;
    color: #004da0;
  }
}
@media screen and (max-width: 840px) {
  .menu_btn.recruit {
    margin-left: auto;
  }
}
.menu_btn.contact {
  background-color: #ac8e4b;
  border-color: #ac8e4b;
}
@media screen and (min-width: 841px) {
  .menu_btn.contact:hover {
    background-color: #fff;
    color: #ac8e4b;
  }
}

.menu_btn_wrap {
  display: none;
  gap: 10px;
  margin: 20px 0;
}
.menu_btn_wrap .menu_btn.recruit {
  margin-left: 0;
}
@media screen and (max-width: 540px) {
  .menu_btn_wrap.sp {
    display: flex;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 840px) {
  .hamburger {
    display: flex;
    gap: 10px;
    flex-flow: column;
    justify-content: center;
    /* height: 100%; */
    aspect-ratio: 1/1;
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    padding: 20px;
    z-index: 101;
  }
  .hamburger span {
    height: 2px;
    width: 100%;
    background-color: #004b8e;
    transform-origin: center;
    transition: all 0.3s ease;
  }
}
.hamburger.open span {
  background-color: #fff;
}
.hamburger.open span:nth-of-type(1) {
  transform: translateY(620%) rotate(15deg);
}
.hamburger.open span:nth-of-type(2) {
  opacity: 0;
  transform: translateX(-100%);
}
.hamburger.open span:nth-of-type(3) {
  transform: translateY(-620%) rotate(-15deg);
}

@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 540px) {
  .sp {
    display: block;
  }
}

.m_sp {
  display: none;
}
@media screen and (max-width: 840px) {
  .m_sp {
    display: block;
  }
}

.rec_banner_wrap {
  max-width: 1156px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  transform: translateY(-30%);
  display: block;
  position: relative;
}
.rec_banner_wrap:hover .rec_banner {
  transform: scale(1.05);
}
.rec_banner_wrap .rec_banner {
  display: flex;
  flex-flow: row wrap;
  text-decoration: none;
  position: relative;
  transition: all ease 0.3s;
}
.rec_banner_wrap .rec_banner [class*=rec_img] {
  width: 33.3333333333%;
  z-index: 0;
  overflow: hidden;
}
.rec_banner_wrap .rec_banner [class*=rec_img] img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.34, 1.15, 0.64, 1);
}
@media (prefers-reduced-motion: reduce) {
  .rec_banner_wrap .rec_banner [class*=rec_img] img {
    transition: none;
  }
  .rec_banner_wrap .rec_banner:hover [class*=rec_img] img {
    transform: none;
  }
  .rec_banner_wrap .rec_banner:hover .banner_btn:after {
    transform: none;
  }
}
.rec_banner_wrap .rec_banner::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #004da0);
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.6;
  z-index: 1;
}
.rec_banner_wrap h2 {
  font-size: 9.6rem;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  position: relative;
  color: #fff;
  line-height: 1;
}
.rec_banner_wrap h2 span {
  font-size: 2.7rem;
  color: #333333;
  display: block;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 540px) {
  .rec_banner_wrap h2 span {
    font-size: 1.7rem;
  }
}
.rec_banner_wrap h2::before {
  content: none;
}
@media screen and (max-width: 540px) {
  .rec_banner_wrap h2 {
    font-size: 4.6rem;
  }
}
.rec_banner_wrap .h2_wrap {
  position: absolute;
  left: 3%;
  bottom: 6%;
  z-index: 2;
  display: flex;
  flex-flow: row wrap;
  gap: 0 20px;
  align-items: end;
}
.rec_banner_wrap .banner_btn {
  font-size: 3.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  letter-spacing: 0;
}
.rec_banner_wrap .banner_btn:after {
  content: "";
  width: 33px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background-color: #ac8e4b;
  background-image: url(images/arrow.webp);
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center;
  margin-left: 15px;
  flex-shrink: 0;
  transform-origin: center center;
  transition: transform 0.38s cubic-bezier(0.34, 1.15, 0.64, 1);
}
@media (prefers-reduced-motion: reduce) {
  .rec_banner_wrap .banner_btn:after {
    transition: none;
  }
  .rec_banner_wrap .banner_btn:hover:after, .rec_banner_wrap .banner_btn:focus-visible:after {
    transform: none;
  }
}
@media screen and (max-width: 540px) {
  .rec_banner_wrap .banner_btn {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 540px) {
  .rec_banner_wrap {
    border-radius: 15px;
  }
}

footer {
  border-radius: 50px 50px 0 0;
  background-color: #004da0;
  position: relative;
  z-index: 1;
  margin-top: 110px;
  padding-bottom: 30px;
}
@media screen and (max-width: 540px) {
  footer {
    border-radius: 30px 30px 0 0;
    margin-top: 70px;
  }
}

.footer_logo {
  width: 124px;
  margin-bottom: 60px;
  margin-top: -60px;
}
@media screen and (max-width: 540px) {
  .footer_logo {
    margin: 0 auto;
    margin-bottom: 60px;
    margin-top: 20px;
    width: 100px;
  }
}

.ft_menu {
  display: flex;
  gap: 60px;
  flex-flow: row wrap;
}
@media screen and (max-width: 840px) {
  .ft_menu {
    gap: 30px;
    margin: 0 auto;
    width: 90%;
  }
}
.ft_menu [class*=col] {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-flow: column;
  gap: 5px;
}
.ft_menu [class*=col] a {
  font-size: 1.6rem;
  color: #b2cae2;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 540px) {
  .ft_menu [class*=col] a {
    font-size: 1.4rem;
  }
}
.ft_menu [class*=col] .menu_child {
  font-size: 1.4rem;
  padding-left: 1.6rem;
  font-weight: 100;
}
.ft_menu [class*=col] h4 a {
  font-size: 2rem;
  color: #fff;
  border-bottom: 0.5px solid #6aacff;
  padding-bottom: 8px;
  margin-bottom: 15px;
  display: block;
}
@media screen and (max-width: 540px) {
  .ft_menu [class*=col] h4 a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 840px) {
  .ft_menu [class*=col] {
    flex: none;
    width: calc((100% - 30px) / 2);
  }
}

.ft_bottom {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 840px) {
  .ft_bottom {
    margin: 30px auto 0;
    width: 90%;
    justify-content: center;
    text-align: center;
  }
}

.ft_sns {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.ft_sns a {
  width: 26px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
}
.ft_sns a img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.sub_menu {
  font-size: 1rem;
  color: #fff;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.sub_menu a {
  padding: 7px 14px;
}
.sub_menu a:nth-of-type(1) {
  border-right: 0.5px solid #fff;
}
@media screen and (max-width: 540px) {
  .sub_menu a:nth-of-type(1) {
    padding-left: 0;
  }
}

.link_btn {
  font-size: 2.4rem;
  color: #fff;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: flex;
  align-items: center;
  letter-spacing: 0;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}
.link_btn:after {
  content: "";
  width: 46px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background-color: #ac8e4b;
  background-image: url(images/arrow.webp);
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center;
  margin-left: 20px;
  flex-shrink: 0;
}
.link_btn:hover::after {
  background-color: #fff;
  border: #ac8e4b 1px solid;
  animation: arrow ease 0.5s forwards;
  background-image: url(images/arrow_rv.webp);
  transform: scale(-1, 1);
}

@keyframes arrow {
  0% {
    background-position-x: 200%;
  }
  100% {
    background-position-x: 50%;
  }
}
header {
  position: sticky;
  top: 0;
  z-index: 10;
}

.inner {
  max-width: 1200px;
}

.fix_sns {
  display: none;
}

body {
  background: linear-gradient(to bottom, #ebf1f7, #fff);
}
body.post-type-archive-news, body.page-template-page-taxi, body.page-template-page-vehicle-management, body.page-template-page-maintenance, body.page-template-page-welfare, body.page-template-page-care {
  background: linear-gradient(to bottom, #ebf1f7, #fff 40%);
}

#breadcrumbs {
  padding: 20px 0;
}

.breadcrumbs {
  display: flex;
  flex-flow: row wrap;
  gap: 15px;
}
.breadcrumbs li {
  font-size: 1.2rem;
  color: #b2b2b2;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 15px;
}
.breadcrumbs li span {
  color: #1a3666;
}
.breadcrumbs li::after {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #b2b2b2;
  display: block;
}
.breadcrumbs li:nth-last-of-type(1)::after {
  content: none;
}

body.page-template-page-taxi-fare .breadcrumbs li:nth-last-of-type(1)::after,
body.page-template-page-company-php .breadcrumbs li:nth-last-of-type(1)::after {
  content: none;
}

#message h2,
#privacy h2,
#sustainability h2,
#safty h2 {
  font-size: 4.2rem;
  border-bottom: 2px solid #494949;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 100px;
}
#message h2::before,
#privacy h2::before,
#sustainability h2::before,
#safty h2::before {
  content: "";
  width: 120px;
  height: 2px;
  background-color: #ac8e4b;
  position: absolute;
  bottom: -2px;
  left: 0;
}
@media screen and (max-width: 540px) {
  #message h2,
  #privacy h2,
  #sustainability h2,
  #safty h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }
}
#message h3,
#privacy h3,
#sustainability h3,
#safty h3 {
  font-size: 2.4rem;
  color: #1a3666;
  margin-bottom: 10px;
}

#privacy h2 {
  margin-bottom: 50px;
}

#sustainability h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 540px) {
  #sustainability h2 {
    margin-bottom: 24px;
  }
}

#safty h2 {
  margin-bottom: 50px;
}

#privacy,
#sustainability,
#safty {
  padding-bottom: 30px;
}

#message .mes_wrap_1colum {
  margin: 50px 0;
}
#message .mes_wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 35px;
}
#message .mes_wrap p.sp_lead {
  color: #1a3666;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.5;
  display: none;
  width: calc((100% - 10px) / 2);
  white-space: nowrap;
}
@media screen and (max-width: 540px) {
  #message .mes_wrap p.sp_lead {
    display: block;
    width: 100%;
    order: 2;
  }
}
@media screen and (max-width: 840px) {
  #message .mes_wrap {
    gap: 22px;
  }
}
@media screen and (max-width: 540px) {
  #message .mes_wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}
#message .ph {
  width: 30%;
}
@media screen and (max-width: 540px) {
  #message .ph {
    width: 100%;
    order: 1;
  }
}
#message .mes_ph {
  width: 100%;
  aspect-ratio: 1/1.2;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ddd;
  margin-bottom: 40px;
}
#message .mes_ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 48% center;
     object-position: 48% center;
  display: block;
}
@media screen and (max-width: 540px) {
  #message .mes_ph {
    aspect-ratio: 16/9;
    margin-bottom: 20px;
  }
  #message .mes_ph img {
    -o-object-position: 48% center;
       object-position: 48% center;
  }
}
#message .txt {
  flex: 1;
}
@media screen and (max-width: 540px) {
  #message .txt {
    order: 3;
    width: 100%;
  }
}
#message p {
  color: #333;
  line-height: 2;
  margin-bottom: 1.6em;
}
#message p:last-child {
  margin-bottom: 0;
}
#message p.lead {
  color: #1a3666;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
  white-space: nowrap;
}
@media screen and (max-width: 540px) {
  #message p.lead {
    display: none;
  }
}
#message .co_name,
#message .name {
  color: #333;
}
#message .co_name span,
#message .name span {
  color: #ac8e4b;
}
#message .co_name {
  margin-bottom: 0;
}
#message .name {
  font-size: 2.2rem;
}
#message .name span {
  font-size: 1.8rem;
  margin-right: 1.8rem;
}
@media screen and (max-width: 540px) {
  #message .name {
    font-size: 1.8rem;
  }
  #message .name span {
    font-size: 1.5rem;
  }
}

.pri_wrap,
.sus_wrap,
.safty_wrap {
  background-color: #fff;
  border-radius: 15px;
  padding: 50px;
  margin-top: 50px;
  margin-bottom: 40px;
}
.pri_wrap h4,
.sus_wrap h4,
.safty_wrap h4 {
  font-size: 2rem;
  color: #1a3666;
  margin-bottom: 10px;
}
.pri_wrap p,
.sus_wrap p,
.safty_wrap p {
  color: #333;
  margin-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .pri_wrap,
  .sus_wrap,
  .safty_wrap {
    padding: 30px;
  }
}

#news {
  background-color: #fff;
  border-radius: 100px 0 0 0;
  padding: 70px 0;
}
#news .news_wrap .item {
  position: relative;
  border-bottom: 0.5px solid #494949;
  padding: 50px 10px;
  display: block;
  transition: all ease 0.3s;
}
#news .news_wrap .item:hover {
  background-color: #e8f1fa;
}
#news .news_wrap .item::before {
  content: "";
  width: 120px;
  height: 1px;
  background-color: #ac8e4b;
  position: absolute;
  left: 0;
  bottom: -0.5px;
}
#news .news_wrap .item .date {
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #ac8e4b;
  letter-spacing: 0;
  position: relative;
}
#news .news_wrap .item .title {
  font-size: 2.2rem;
  color: #3f5665;
  padding-right: 60px;
}
@media screen and (max-width: 540px) {
  #news .news_wrap .item .title {
    font-size: 1.5rem;
    padding-right: 15px;
  }
}
#news .news_wrap .item .ns_btn {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: absolute;
  top: 0;
  right: 10px;
}
#news .news_wrap .item .ns_btn:after {
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background-color: #ac8e4b;
  background-image: url(images/arrow.webp);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
}
#news .news_wrap .item.tab_url .ns_btn:after {
  background-image: url(images/tab.webp);
  background-size: 40%;
}

.cabik_pagination {
  margin-top: 46px;
}
.cabik_pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cabik_pagination ul.page-numbers li {
  margin: 0;
  padding: 0;
}
.cabik_pagination ul.page-numbers .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  padding: 0 12px;
  background-color: #f5f5f4;
  color: #ac8e4b;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0;
}
.cabik_pagination ul.page-numbers a.page-numbers {
  transition: background-color 0.2s ease, color 0.2s ease;
}
.cabik_pagination ul.page-numbers a.page-numbers:hover, .cabik_pagination ul.page-numbers a.page-numbers:focus-visible {
  background-color: #ebebeb;
  color: #ac8e4b;
}
.cabik_pagination ul.page-numbers a.page-numbers.prev, .cabik_pagination ul.page-numbers a.page-numbers.next {
  min-width: auto;
  background-color: transparent;
  padding: 0 4px;
}
.cabik_pagination ul.page-numbers a.page-numbers.prev:hover, .cabik_pagination ul.page-numbers a.page-numbers.prev:focus-visible, .cabik_pagination ul.page-numbers a.page-numbers.next:hover, .cabik_pagination ul.page-numbers a.page-numbers.next:focus-visible {
  background-color: transparent;
  color: #ac8e4b;
  opacity: 0.7;
}
.cabik_pagination ul.page-numbers span.current {
  border-color: #ac8e4b;
  background-color: #ac8e4b;
  color: #fff;
}
.cabik_pagination ul.page-numbers span.dots {
  min-width: 24px;
  border-color: transparent;
  background-color: transparent;
  padding: 0 4px;
  color: #3f5665;
}
@media screen and (max-width: 540px) {
  .cabik_pagination {
    margin-top: 34px;
  }
  .cabik_pagination ul.page-numbers {
    gap: 8px;
  }
  .cabik_pagination ul.page-numbers .page-numbers {
    min-width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}

.post-type-archive-news #news .inner {
  width: 90%;
  max-width: 1080px;
}
@media screen and (max-width: 540px) {
  .post-type-archive-news #news {
    padding: 70px 20px;
  }
  .post-type-archive-news .news_wrap .item {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .post-type-archive-news .news_wrap .item .title {
    padding-right: 55px !important;
  }
}
@media screen and (max-width: 400px) {
  .post-type-archive-news .news_wrap .item .title {
    padding-right: 46px !important;
  }
  .post-type-archive-news .news_wrap .item .ns_btn {
    width: 34px;
    height: 34px;
    top: 50%;
    transform: translateY(-50%);
  }
  .post-type-archive-news .news_wrap .item .ns_btn:after {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }
}

#page_title .h2_wrap {
  color: #333;
  font-size: 5.2rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 540px) {
  #page_title .h2_wrap {
    font-size: 3.2rem;
  }
}
#page_title .h2_wrap span {
  font-size: 2rem;
  color: #1a3666;
  display: block;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  position: relative;
  padding-left: 25px;
}
#page_title .h2_wrap span::before {
  width: 15px;
  height: 2px;
  content: "";
  background-color: #ac8e4b;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#page_title.contact_title {
  padding-top: 0;
  padding-bottom: 40px;
}
#page_title.contact_title .h2_wrap {
  text-align: left;
  font-size: 5.2rem;
  color: #333333;
}
#page_title.contact_title .h2_wrap span {
  margin-bottom: 8px;
}

/* 会社情報（/about/company/ 想定・テンプレート「会社情報」） */
body.page-template-page-company-php {
  background: #fff;
}

.company_page {
  padding: 0;
  margin: 0;
  background-color: #fff;
}

.company_hero {
  background-color: #f0f4f8;
  padding: 4px 0 108px;
}
@media screen and (max-width: 540px) {
  .company_hero {
    padding-bottom: 80px;
  }
}

.company_breadcrumbs {
  padding: 0 0 36px;
}
.company_breadcrumbs .breadcrumbs {
  gap: 0 10px;
}
.company_breadcrumbs .breadcrumbs li {
  font-size: 1.2rem;
  color: #b8c0ca;
  gap: 10px;
  letter-spacing: 0.04em;
}
.company_breadcrumbs .breadcrumbs li a {
  color: #b8c0ca;
  text-decoration: none;
  transition: color 0.2s ease;
}
@media screen and (min-width: 841px) {
  .company_breadcrumbs .breadcrumbs li a:hover {
    color: #1a3666;
  }
}
.company_breadcrumbs .breadcrumbs li span {
  color: #b8c0ca;
}
.company_breadcrumbs .breadcrumbs li::after {
  content: "—";
  width: auto;
  height: auto;
  background: none;
  color: #d0d6de;
  font-size: 1.1rem;
  line-height: 1;
  transform: none;
}
.company_breadcrumbs .breadcrumbs li:nth-last-of-type(1)::after {
  content: none;
}

.company_page_label {
  margin: 0 0 16px;
  padding-left: 25px;
  font-size: 2rem;
  color: #1a3666;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-align: left;
  position: relative;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.company_label_rule {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 15px;
  height: 2px;
  background-color: #ac8e4b;
  transform: translateY(-50%);
}

.company_page_title {
  margin: 0;
  font-size: clamp(3.4rem, 4.6vw, 5.4rem);
  color: #333333;
  line-height: 1.22;
  letter-spacing: 0.12em;
  text-align: left;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.company_sheet_outer {
  position: relative;
  z-index: 1;
  margin-top: -56px;
  background-color: #fff;
  border-radius: 88px 0 0 0;
  padding: 52px 0 88px;
}
@media screen and (max-width: 540px) {
  .company_sheet_outer {
    margin-top: -40px;
    border-radius: 40px 0 0 0;
    padding: 36px 0 56px;
  }
}
.company_sheet_outer .inner {
  max-width: 1120px;
}

.company_sheet {
  padding: 0 64px;
}
@media screen and (max-width: 840px) {
  .company_sheet {
    padding: 0 36px;
  }
}
@media screen and (max-width: 540px) {
  .company_sheet {
    padding: 0 22px;
  }
}

.company_section_title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  line-height: 1.35;
}

.company_section_bullet {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #ac8e4b;
  flex-shrink: 0;
  margin-top: 0.65em;
}

.company_section_title_inner {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.35em;
}

.company_section_title_ja {
  font-size: 2.6rem;
  color: #333333;
  letter-spacing: 0.08em;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 540px) {
  .company_section_title_ja {
    font-size: 2rem;
  }
}

.company_section_title_en {
  font-size: 1.5rem;
  color: #ac8e4b;
  letter-spacing: 0.02em;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
}
@media screen and (max-width: 540px) {
  .company_section_title_en {
    font-size: 1.3rem;
  }
}

.company_dl {
  margin: 40px 0 0;
}
@media screen and (max-width: 540px) {
  .company_dl {
    margin-top: 32px;
  }
}

.company_plain_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.company_plain_list li + li {
  margin-top: 6px;
}

.company_plain_list_car li {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.company_dl_row {
  display: grid;
  grid-template-columns: 228px 1fr;
  gap: 12px 48px;
  margin-left: 30px;
  padding: 26px 0;
  border-bottom: 1px solid #494949;
  -o-border-image: linear-gradient(to right, #494949 20px, #ac8e4b 20px) 1;
     border-image: linear-gradient(to right, #494949 20px, #ac8e4b 20px) 1;
  align-items: baseline;
}
.company_dl_row:last-child {
  border-bottom: none;
  -o-border-image: none;
     border-image: none;
}
@media screen and (max-width: 540px) {
  .company_dl_row {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-left: 0;
    padding: 20px 0;
  }
}
.company_dl_row dt {
  margin: 0;
  color: #1a3666;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 540px) {
  .company_dl_row dt {
    font-size: 1.4rem;
  }
}
.company_dl_row dd {
  margin: 0;
  color: #3f5665;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 540px) {
  .company_dl_row dd {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 540px) {
  .company_dl_row dd .company_employee_note {
    display: block;
    margin-top: 0.35em;
  }
}
.company_dl_row dd a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 841px) {
  .company_dl_row dd a:hover {
    color: #1a3666;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

.company_history {
  background-color: #f0f4f8;
  border-radius: 72px 0 0 0;
  margin-top: 110px;
  padding: 56px 0 104px;
}
@media screen and (max-width: 840px) {
  .company_history {
    margin-top: 88px;
    border-radius: 44px 0 0 0;
  }
}
@media screen and (max-width: 540px) {
  .company_history {
    margin-top: 64px;
    border-radius: 30px 0 0 0;
    padding: 40px 0 58px;
  }
}

.company_history_title {
  margin-bottom: 52px;
}
@media screen and (max-width: 540px) {
  .company_history_title {
    margin-bottom: 30px;
  }
}

.company_history_tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  margin-bottom: 56px;
}
@media screen and (max-width: 540px) {
  .company_history_tabs {
    margin-bottom: 36px;
  }
}

.company_history_tab {
  min-width: 170px;
  border: 1px solid #1a3666;
  border-radius: 8px;
  background-color: #dbe4ee;
  color: #1a3666;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  padding: 13px 18px;
  text-align: center;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.company_history_tab.is_active {
  background-color: #1a3666;
  color: #fff;
}
@media screen and (max-width: 840px) {
  .company_history_tab {
    min-width: 160px;
    font-size: 1.6rem;
    padding: 11px 14px;
  }
}
@media screen and (max-width: 540px) {
  .company_history_tab {
    width: 100%;
    min-width: auto;
  }
}

.company_history_slider_wrap {
  position: relative;
}

.company_history_swiper {
  padding-top: 34px;
  padding-bottom: 28px;
  overflow: hidden;
  touch-action: pan-x;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.company_history_swiper .swiper-wrapper {
  align-items: stretch;
  cursor: grab;
}
.company_history_swiper .swiper-slide {
  overflow: visible;
}
.company_history_swiper:active .swiper-wrapper {
  cursor: grabbing;
}

.company_history_item {
  position: relative;
  padding-top: 54px;
  min-height: 210px;
}
.company_history_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 100%;
  height: 1px;
  background-color: #dfe7ef;
  pointer-events: none;
}
.company_history_item::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 10px solid #fff;
  background-color: #0058b4;
  box-shadow: 0 0 0 1px #dfe7ef;
  transform: translateY(-50%);
  pointer-events: none;
}

.company_history_item_year {
  font-size: 1.6rem;
  line-height: 1.1;
  color: #0058b4;
  letter-spacing: 0.03em;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.company_history_item_month {
  font-size: 2.2rem;
  color: #244d79;
  line-height: 1.2;
  margin-top: 4px;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.company_history_item_text {
  margin-top: 18px;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #3f5665;
}

.company_history_nav {
  position: relative;
  width: calc(100% - 84px);
  height: 28px;
  margin: 32px 42px 0;
  box-sizing: content-box;
  background: transparent;
}
.company_history_nav::before {
  content: "";
  position: absolute;
  left: -42px;
  right: -42px;
  top: 50%;
  height: 1px;
  background-color: #dfe7ef;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.company_history_nav.swiper-scrollbar {
  left: auto;
  bottom: auto;
  border-radius: 0;
  background: transparent;
}

.company_history_nav_drag {
  display: inline-flex;
  gap: 0;
  height: 28px;
  border-radius: 999px;
  overflow: hidden;
  background-color: #1a3666;
  cursor: grab;
  position: relative;
  z-index: 1;
}
.company_history_nav_drag:active {
  cursor: grabbing;
}

.company_history_nav_btn {
  width: 42px;
  height: 28px;
  background-color: #1a3666;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  line-height: 1;
  pointer-events: none;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}

@media screen and (max-width: 840px) {
  .company_history_swiper {
    padding-bottom: 18px;
  }
  .company_history_item {
    min-height: 182px;
  }
  .company_history_item_year {
    font-size: 1.4rem;
  }
  .company_history_item_month {
    font-size: 2rem;
  }
  .company_history_item_text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 540px) {
  .company_history_item {
    min-height: 0;
    padding-right: 6px;
  }
  .company_history_item_year {
    font-size: 1.2rem;
  }
  .company_history_item_month {
    font-size: 1.8rem;
  }
  .company_history_item_text {
    font-size: 1.3rem;
  }
}
.company_org {
  background-color: #fff;
  border-radius: 72px 0 0 0;
  margin-top: -72px;
  padding-top: 124px;
  padding-bottom: 90px;
  position: relative;
}
@media screen and (max-width: 840px) {
  .company_org {
    border-radius: 44px 0 0 0;
    margin-top: -44px;
    padding-top: 96px;
  }
}
@media screen and (max-width: 540px) {
  .company_org {
    border-radius: 30px 0 0 0;
    margin-top: -30px;
    padding-top: 54px;
  }
}

.company_org_title {
  margin-bottom: 28px;
}

.company_org_image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.company_org_root {
  width: 320px;
  margin: 0 auto 46px;
  text-align: center;
  background-color: #a99155;
  color: #fff;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  position: relative;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.company_org_root::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 46px;
  background-color: #d6ccba;
  transform: translateX(-50%);
}

.company_org_row {
  position: relative;
  display: flex;
  gap: 1.2%;
  min-width: 0;
  width: 100%;
  padding-top: 34px;
}
.company_org_row::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 5.3%;
  top: 0;
  height: 1px;
  background-color: #d6ccba;
}

.company_org_col {
  width: 9%;
  flex: 0 0 auto;
  position: relative;
}
.company_org_col.two_col {
  width: 12%;
}
.company_org_col.wide {
  width: 24%;
}
.company_org_col.medium {
  width: 18%;
}
.company_org_col.jika_col {
  width: 11%;
}
.company_org_col::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -34px;
  width: 1px;
  height: 34px;
  background-color: #d6ccba;
  transform: translateX(-50%);
}

.company_org_head {
  background-color: #e8dcc0;
  color: #786945;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  padding: 12px 6px 11px;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.company_org_children {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.company_org_children::before {
  content: "";
  position: absolute;
  left: max(12px, 6%);
  right: max(12px, 6%);
  top: -18px;
  height: 1px;
  background-color: #ddd4c3;
}
.company_org_children::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -36px;
  width: 1px;
  height: 18px;
  background-color: #ddd4c3;
  transform: translateX(-50%);
}

/* タクシー事業部・福祉事業部・居宅施設事業部：横幹線は先頭〜末尾の子の中心間（縦線位置）に合わせる */
.company_org_row > .company_org_col:nth-child(1) .company_org_children.two::before {
  left: max(0px, (100% - 102px) / 2 + 23px);
  right: max(0px, (100% - 102px) / 2 + 23px);
}

.company_org_row > .company_org_col:nth-child(3) .company_org_children.five::before {
  left: max(0px, (100% - 238px) / 2 + 21px);
  right: max(0px, (100% - 238px) / 2 + 21px);
}

.company_org_row > .company_org_col:nth-child(4) .company_org_children.three::before {
  left: max(0px, (100% - 151px) / 2 + 22.5px);
  right: max(0px, (100% - 151px) / 2 + 22.5px);
}

.company_org_grand_children {
  display: flex;
  gap: 10px;
  position: relative;
}
.company_org_grand_children::before {
  content: "";
  position: absolute;
  left: max(6px, 5%);
  right: max(6px, 5%);
  top: -18px;
  height: 1px;
  background-color: #ddd4c3;
}
.company_org_grand_children .company_org_child {
  margin-top: 16px;
}

.company_org_child {
  width: 46px;
  background-color: #f7f7f5;
  color: #3f5665;
  text-align: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.06em;
  font-size: 1.35rem;
  line-height: 1.45;
  min-height: 214px;
  padding: 12px 7px;
  position: relative;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.company_org_child::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  width: 1px;
  height: 18px;
  background-color: #ddd4c3;
  transform: translateX(-50%);
}

.company_org_children.five {
  gap: 7px;
}
.company_org_children.five .company_org_child {
  width: 42px;
}

.company_org_children.three {
  gap: 8px;
}
.company_org_children.three .company_org_child {
  width: 45px;
}

/* 子要素を持つ部門の縦幅を統一 */
.company_org_row > .company_org_col.has_children .company_org_child {
  min-height: 270px;
  height: 270px;
}

@media screen and (max-width: 840px) {
  .company_org_root {
    width: 240px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 540px) {
  .company_org {
    padding-bottom: 56px;
  }
  .company_org_title {
    margin-bottom: 20px;
  }
}
#contact_page {
  background-color: #fff;
  border-radius: 88px 0 0 0;
  margin-top: 40px;
  padding-top: 88px;
  padding-bottom: 90px;
}
#contact_page .inner {
  max-width: 1120px;
}
#contact_page .inner .row {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  justify-content: center;
}
#contact_page .contact_tel_box {
  width: 400px;
  border-radius: 10px;
  overflow: hidden;
}
#contact_page .tel_image {
  display: block;
}
@media screen and (min-width: 541px) {
  #contact_page .tel_image {
    pointer-events: none;
  }
}
#contact_page .tel_image img {
  width: 100%;
  height: auto;
  display: block;
}
#contact_page .label {
  color: #1a3666;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
#contact_page .tel_number {
  color: #1a3666;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
#contact_page .tel_number::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #1a3666;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23fff' d='M16.72 13.06l-2.2-.95a1.1 1.1 0 00-1.26.28l-.97 1.18a11.21 11.21 0 01-5.34-5.34l1.18-.97c.35-.29.46-.77.28-1.26l-.95-2.2a1.1 1.1 0 00-1.2-.65l-2.04.34a1.1 1.1 0 00-.91 1.08C3.11 11.24 8.76 16.89 15.43 16.89a1.1 1.1 0 001.08-.91l.34-2.04a1.1 1.1 0 00-.65-1.2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 58%;
  display: inline-flex;
  flex-shrink: 0;
}
#contact_page .tel_meta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
#contact_page .tel_meta .tag {
  border: 2px solid #1a3666;
  border-radius: 4px;
  color: #1a3666;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 4px 12px;
  line-height: 1;
}
#contact_page .tel_meta p {
  color: #1a3666;
  font-size: 1.8rem;
}
#contact_page .contact_form_area {
  max-width: 980px;
  margin: 40px auto 0;
  color: #1a3666;
}
#contact_page .contact_form_area .required_note,
#contact_page .contact_form_area .must_note,
#contact_page .contact_form_area .must_txt {
  margin-bottom: 8px;
  text-align: right;
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
#contact_page .contact_form_area .required_note span,
#contact_page .contact_form_area .must_note span,
#contact_page .contact_form_area .must_txt span {
  color: #f08d7e;
}
#contact_page .contact_form_area .required_note {
  padding-bottom: 12px;
  border-bottom: 1px solid #494949;
  margin-bottom: 26px;
  text-align: left;
  padding-left: calc(50% + 260px);
}
#contact_page .contact_form_area .form_table,
#contact_page .contact_form_area table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
#contact_page .contact_form_area form {
  --form-row-width: 760px;
  --form-right-edge: calc(50% + 370px);
}
#contact_page .contact_form_area form dl {
  display: grid;
  grid-template-columns: 160px minmax(0, 560px);
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 18px;
  align-items: start;
  justify-content: start;
  width: var(--form-row-width);
  margin: 0 0 0 calc(var(--form-right-edge) - var(--form-row-width));
}
#contact_page .contact_form_area form dt,
#contact_page .contact_form_area form dd {
  margin: 0;
}
#contact_page .contact_form_area form dt {
  grid-column: 1;
  color: #333333;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding-top: 8px;
  white-space: nowrap;
}
#contact_page .contact_form_area form dd {
  grid-column: 2;
}
#contact_page .contact_form_area form p:has(input[type=text]),
#contact_page .contact_form_area form p:has(input[type=email]),
#contact_page .contact_form_area form p:has(input[type=tel]),
#contact_page .contact_form_area form p:has(textarea),
#contact_page .contact_form_area form p:has(select) {
  display: grid;
  grid-template-columns: 160px minmax(0, 560px);
  -moz-column-gap: 40px;
       column-gap: 40px;
  align-items: start;
  justify-content: start;
  width: var(--form-row-width);
  margin: 0 0 18px calc(var(--form-right-edge) - var(--form-row-width));
  line-height: 1.4;
  color: #333333;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
#contact_page .contact_form_area form p:has(input[type=text]) > input,
#contact_page .contact_form_area form p:has(input[type=email]) > input,
#contact_page .contact_form_area form p:has(input[type=tel]) > input,
#contact_page .contact_form_area form p:has(textarea) > textarea,
#contact_page .contact_form_area form p:has(select) > select,
#contact_page .contact_form_area form p:has(input[type=text]) > span,
#contact_page .contact_form_area form p:has(input[type=email]) > span,
#contact_page .contact_form_area form p:has(input[type=tel]) > span,
#contact_page .contact_form_area form p:has(textarea) > span,
#contact_page .contact_form_area form p:has(select) > span,
#contact_page .contact_form_area form p:has(input[type=text]) > .wpcf7-form-control-wrap,
#contact_page .contact_form_area form p:has(input[type=email]) > .wpcf7-form-control-wrap,
#contact_page .contact_form_area form p:has(input[type=tel]) > .wpcf7-form-control-wrap,
#contact_page .contact_form_area form p:has(textarea) > .wpcf7-form-control-wrap,
#contact_page .contact_form_area form p:has(select) > .wpcf7-form-control-wrap {
  grid-column: 2;
}
#contact_page .contact_form_area form p:has(input[type=text]) br,
#contact_page .contact_form_area form p:has(input[type=email]) br,
#contact_page .contact_form_area form p:has(input[type=tel]) br,
#contact_page .contact_form_area form p:has(textarea) br,
#contact_page .contact_form_area form p:has(select) br {
  display: none;
}
#contact_page .contact_form_area th,
#contact_page .contact_form_area td {
  border-bottom: 1px solid #e6e6e6;
  padding: 14px 0;
  vertical-align: top;
}
#contact_page .contact_form_area th {
  width: 160px;
  padding-right: 20px;
  color: #333333;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
#contact_page .contact_form_area td {
  width: auto;
}
#contact_page .contact_form_area .required,
#contact_page .contact_form_area .must,
#contact_page .contact_form_area .hissu {
  color: #333333;
  font-size: 1.4rem;
  font-weight: 700;
  vertical-align: middle;
  position: relative;
}
#contact_page .contact_form_area .required::after,
#contact_page .contact_form_area .must::after,
#contact_page .contact_form_area .hissu::after {
  content: "*";
  color: #f08d7e;
  font-size: 1.2rem;
  margin-left: 4px;
  vertical-align: middle;
}
#contact_page .contact_form_area input[type=text],
#contact_page .contact_form_area input[type=email],
#contact_page .contact_form_area input[type=tel],
#contact_page .contact_form_area textarea,
#contact_page .contact_form_area select {
  width: min(100%, 560px);
  display: block;
  background-color: #f5f5f4;
  border: 1px solid #efefef;
  border-radius: 0;
  color: #333;
  font-size: 1.5rem;
  padding: 10px 12px;
  min-height: 42px;
}
#contact_page .contact_form_area textarea {
  min-height: 190px;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#contact_page .contact_form_area textarea::-webkit-resizer {
  display: none;
}
#contact_page .contact_form_area .privacy_note,
#contact_page .contact_form_area .entry_form__agree {
  margin-top: 30px;
  text-align: center;
  font-size: 1.5rem;
  color: #333333;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  box-sizing: border-box;
  padding: 0 4px;
  white-space: normal !important;
  line-height: 1.6;
}
#contact_page .contact_form_area .privacy_note a,
#contact_page .contact_form_area .entry_form__agree a {
  color: #1a3666;
  font-weight: 700;
  text-decoration: underline;
}
#contact_page .contact_form_area .privacy_note a br,
#contact_page .contact_form_area .entry_form__agree a br {
  display: none;
}
#contact_page .contact_form_area .entry_form__submit,
#contact_page .contact_form_area .entry_form__actions {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
#contact_page .contact_form_area .submit_wrap {
  margin-top: 26px;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
}
#contact_page .contact_form_area .button {
  padding: 3px 10px 3px 30px;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  position: relative;
  max-width: 100%;
  box-sizing: border-box;
}
#contact_page .contact_form_area .button::before {
  content: "";
  order: 2;
  margin-left: 12px;
  margin-right: 0;
  width: 30px;
  height: 30px;
  min-width: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8'%3E%3Cpath d='M1 6H13' stroke='%23ac8e4b' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M13 6L10.2 3.2' stroke='%23ac8e4b' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 16px 8px;
  background-position: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#contact_page .contact_form_area .button::after {
  display: none;
}
#contact_page .contact_form_area input[type=submit],
#contact_page .contact_form_area button[type=submit] {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 17px 24px;
}
@media screen and (max-width: 840px) {
  #contact_page {
    border-radius: 40px 0 0 0;
    margin-top: 24px;
    padding-top: 45px;
    padding-bottom: 50px;
  }
  #contact_page .label {
    font-size: 1.8rem;
  }
  #contact_page .tel_number {
    font-size: 3.8rem;
  }
  #contact_page .tel_number::before {
    width: 30px;
    height: 30px;
  }
  #contact_page .tel_meta {
    gap: 8px;
    flex-wrap: wrap;
  }
  #contact_page .tel_meta p {
    font-size: 1.5rem;
  }
  #contact_page .contact_form_area form {
    max-width: 100%;
    min-width: 0;
  }
  #contact_page .contact_form_area .entry_form__agree {
    margin: 40px 0 32px !important;
    padding: 0 8px;
  }
  #contact_page .contact_form_area .required_note,
  #contact_page .contact_form_area .must_note,
  #contact_page .contact_form_area .must_txt {
    text-align: left;
    margin-bottom: 6px;
    font-size: 1.5rem;
  }
  #contact_page .contact_form_area .required_note {
    padding-left: 0;
  }
  #contact_page .contact_form_area th,
  #contact_page .contact_form_area td {
    display: block;
    width: 100%;
  }
  #contact_page .contact_form_area form {
    --form-row-width: 100%;
  }
  #contact_page .contact_form_area form dl {
    grid-template-columns: 1fr;
    row-gap: 6px;
    width: 100%;
    margin-left: 0;
  }
  #contact_page .contact_form_area form dt,
  #contact_page .contact_form_area form dd {
    grid-column: 1;
  }
  #contact_page .contact_form_area form dt {
    padding-top: 0;
    white-space: normal;
  }
  #contact_page .contact_form_area form p:has(input[type=text]),
  #contact_page .contact_form_area form p:has(input[type=email]),
  #contact_page .contact_form_area form p:has(input[type=tel]),
  #contact_page .contact_form_area form p:has(textarea),
  #contact_page .contact_form_area form p:has(select) {
    grid-template-columns: 1fr;
    row-gap: 8px;
    width: 100%;
    margin-left: 0;
    margin-bottom: 14px;
  }
  #contact_page .contact_form_area form p:has(input[type=text]) > input,
  #contact_page .contact_form_area form p:has(input[type=email]) > input,
  #contact_page .contact_form_area form p:has(input[type=tel]) > input,
  #contact_page .contact_form_area form p:has(textarea) > textarea,
  #contact_page .contact_form_area form p:has(select) > select,
  #contact_page .contact_form_area form p:has(input[type=text]) > span,
  #contact_page .contact_form_area form p:has(input[type=email]) > span,
  #contact_page .contact_form_area form p:has(input[type=tel]) > span,
  #contact_page .contact_form_area form p:has(textarea) > span,
  #contact_page .contact_form_area form p:has(select) > span,
  #contact_page .contact_form_area form p:has(input[type=text]) > .wpcf7-form-control-wrap,
  #contact_page .contact_form_area form p:has(input[type=email]) > .wpcf7-form-control-wrap,
  #contact_page .contact_form_area form p:has(input[type=tel]) > .wpcf7-form-control-wrap,
  #contact_page .contact_form_area form p:has(textarea) > .wpcf7-form-control-wrap,
  #contact_page .contact_form_area form p:has(select) > .wpcf7-form-control-wrap {
    grid-column: 1;
  }
  #contact_page .contact_form_area th {
    border-bottom: 0;
    padding-bottom: 0;
  }
  #contact_page .contact_form_area td {
    padding-top: 8px;
  }
}
@media screen and (max-width: 540px) {
  #contact_page .contact_form_area .button::after {
    right: 19px;
  }
  #contact_page .contact_form_area .button::before {
    margin-right: 0;
  }
}
@media screen and (max-width: 400px) {
  #contact_page .contact_form_area .button {
    gap: 10px;
    min-height: 54px;
    padding: 8px 54px 8px 18px;
    position: relative;
  }
  #contact_page .contact_form_area .button::before {
    width: 34px;
    height: 34px;
    min-width: 34px;
    position: absolute;
    top: 50%;
    right: 10px;
    flex: none;
    margin-left: 0;
    transform: translateY(-50%);
  }
  #contact_page .contact_form_area .button input[type=submit],
  #contact_page .contact_form_area .button button[type=submit] {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
    white-space: normal;
  }
}

#single_news .date {
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #ac8e4b;
  letter-spacing: 0;
  position: relative;
  font-size: 2.2rem;
}
#single_news .title {
  font-size: 3rem;
  color: #3f5665;
  border-bottom: 0.5px solid #494949;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 45px;
}
#single_news .title::before {
  content: "";
  width: 120px;
  height: 1px;
  background-color: #ac8e4b;
  position: absolute;
  left: 0;
  bottom: -0.5px;
}
@media screen and (max-width: 540px) {
  #single_news .title {
    font-size: 1.5rem;
  }
}
#single_news .content p {
  line-height: 2;
  margin-bottom: 1.6em;
}
#single_news .content p:last-child {
  margin-bottom: 0;
}
#single_news .content a {
  color: #004da0;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
#single_news .content a:hover, #single_news .content a:focus-visible {
  text-decoration: none;
}
#single_news .content img {
  margin: 30px auto;
  width: 100%;
  display: block;
}

.button {
  background-color: #ac8e4b;
  font-size: 1.8rem;
  color: #fff;
  padding: 10px 10px 10px 40px;
  border-radius: 100px;
  margin: 50px auto;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: end;
  gap: 20px;
  align-items: center;
  border: 1px solid #ac8e4b;
  transition: all ease 0.3s;
}
.button::after {
  content: "";
  width: 38px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background-color: #fff;
  background-image: url(images/arrow_rv.webp);
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center;
  transform: scale(-1, 1);
}
.button.rv {
  padding: 10px 40px 10px 10px;
  justify-content: start;
}
.button.rv::before {
  content: "";
  width: 38px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center;
  background-image: url(images/arrow_rv.webp);
}
.button.rv:after {
  content: none;
}
.button:hover {
  background-color: #fff;
  color: #ac8e4b;
}
.button:hover:after {
  background-image: url(images/arrow.webp);
  transform: none;
  background-color: #ac8e4b;
}
.button:hover.rv::before {
  background-image: url(images/arrow.webp);
  transform: scale(-1, 1);
  background-color: #ac8e4b;
}

#taxi_fare {
  padding-bottom: 0;
}
#taxi_fare h2 {
  font-size: 4.5rem;
  color: #1a3666;
  border-bottom: 1px solid #494949;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 42px;
}
#taxi_fare h2::before {
  content: "";
  width: 120px;
  height: 2px;
  background-color: #ac8e4b;
  position: absolute;
  bottom: -1px;
  left: 0;
}
#taxi_fare .lead {
  color: #333;
  font-weight: 700;
  margin-bottom: 100px;
}
#taxi_fare h3 {
  color: #1a3666;
  font-size: 4.2rem;
  line-height: 1;
  margin-bottom: 50px;
  position: relative;
  padding-left: 24px;
}
#taxi_fare h3::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1a3666;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#taxi_fare .app_block h3,
#taxi_fare .fare_block:first-of-type h3,
#taxi_fare .tablet_block h3,
#taxi_fare .lineup_block h3 {
  color: #333;
}
#taxi_fare .app_block h3::before,
#taxi_fare .fare_block:first-of-type h3::before,
#taxi_fare .tablet_block h3::before,
#taxi_fare .lineup_block h3::before {
  background-color: #1a3666;
}
#taxi_fare .app_block .app_intro_lead .copy,
#taxi_fare .app_block .app_intro .txt .copy,
#taxi_fare .fare_block:first-of-type .app_intro_lead .copy,
#taxi_fare .fare_block:first-of-type .app_intro .txt .copy {
  color: #333;
}
#taxi_fare .app_intro {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 65px;
}
#taxi_fare .app_intro .txt {
  width: 100%;
}
#taxi_fare .app_intro .app_intro_lead .copy {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  background-color: #fff;
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.45;
}
#taxi_fare .app_intro .app_intro_lead .copy:last-child {
  margin-bottom: 0;
}
#taxi_fare .app_intro .app_intro_body {
  color: #333;
  margin: 20px 0 0;
}
#taxi_fare .app_intro .ph {
  width: 450px;
  flex: 0 0 450px;
  max-width: 100%;
  border-radius: 0;
  overflow: hidden;
  margin: 0 0 0 65px;
}
#taxi_fare .app_intro .ph img {
  width: 100%;
  height: auto;
  display: block;
}
#taxi_fare .app_cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#taxi_fare .app_card {
  border-radius: 14px;
  background-color: #fff;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
#taxi_fare .app_card .app_icon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#taxi_fare .app_card .app_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
#taxi_fare .app_card .name {
  color: #1a3666;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
#taxi_fare .app_card .stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
#taxi_fare .app_card .stores a {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}
#taxi_fare .app_card .stores img {
  height: 40px;
  width: auto;
  display: block;
}
#taxi_fare .app_card {
  padding: 48px 32px;
  gap: 28px;
}
#taxi_fare .app_card .app_icon {
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
}
#taxi_fare .app_card .name {
  font-size: 2.7rem;
  margin-bottom: 16px;
}
#taxi_fare .tablet_block {
  margin-top: 75px;
}
#taxi_fare .tablet_block .copy_row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 40px;
}
#taxi_fare .tablet_block .copy {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0;
}
#taxi_fare .tablet_block > p {
  color: #333;
  margin-bottom: 42px;
}
#taxi_fare .tablet_specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  background-color: #fff;
  border-radius: 12px;
  padding: 18px 22px;
}
#taxi_fare .tablet_specs .spec_box {
  padding: 0 4px;
  position: relative;
}
#taxi_fare .tablet_specs .spec_box:first-child {
  border-right: 1px solid #7e7e7e;
  padding-right: 24px;
}
#taxi_fare .tablet_specs .spec_box:last-child {
  padding-left: 8px;
}
#taxi_fare .tablet_specs .spec_box h4 {
  color: #333;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}
#taxi_fare .tablet_specs .spec_box h4::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1a3666;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#taxi_fare .tablet_specs .spec_box:first-child p {
  align-items: flex-start;
}
#taxi_fare .tablet_specs .spec_box p {
  color: #1f1f1f;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  min-height: 3em;
  display: flex;
  align-items: center;
  word-break: keep-all;
  background-color: #f5f5f4;
  padding: 10px 12px;
}
#taxi_fare .lineup_block {
  margin-top: 70px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 60px calc(50vw - 50% + 48px) 166px;
  border-radius: 70px 0 0 0;
  background-color: #fff;
}
#taxi_fare .car_item {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 28px;
  padding: 14px 0 26px;
}
#taxi_fare .car_item + .car_item {
  margin-top: 20px;
  border-top: none;
  padding-top: 34px;
}
#taxi_fare .car_ph {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  aspect-ratio: 16/12;
}
#taxi_fare .car_ph img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
#taxi_fare .car_item2 .car_ph .ph {
  height: 50%;
}
#taxi_fare .car_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#taxi_fare .car_head_group h4 {
  color: #1a3666;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.25;
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: none;
  position: relative;
}
#taxi_fare .car_head_group h4::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(to right, #ac8e4b, #333);
}
#taxi_fare .car_head_group .catch {
  color: #333;
  font-size: 2.1rem;
  line-height: 1.45;
  margin: 0 0 10px;
}
#taxi_fare .car_body_group,
#taxi_fare .fare_detail {
  margin-left: calc(-72.414% - 96px);
  padding: 10px 12px 12px calc(72.414% + 108px);
  position: relative;
  isolation: isolate;
  min-height: 300px;
}
#taxi_fare .car_body_group::before,
#taxi_fare .fare_detail::before {
  content: "";
  background-color: #f5f5f4;
  border-radius: 0 10px 10px 0;
  position: absolute;
  top: 0;
  right: 0;
  left: -100vw;
  height: 100%;
  z-index: -1;
}
#taxi_fare .specs {
  margin-bottom: 12px;
}
#taxi_fare .specs li {
  color: #333;
  font-size: 1.75rem;
  line-height: 1.45;
  position: relative;
  padding-left: 16px;
  display: flex;
  align-items: center;
  min-height: 1.45em;
}
#taxi_fare .specs li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1a3666;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#taxi_fare .specs li.catch {
  padding-left: 0;
}
#taxi_fare .specs li.catch::before {
  display: none;
}
#taxi_fare .specs li + li {
  margin-top: 8px;
}
#taxi_fare .specs .luggage_spec {
  display: grid;
  grid-template-columns: max-content 1fr;
  -moz-column-gap: 2px;
       column-gap: 2px;
  align-items: start;
}
#taxi_fare .specs .luggage_spec::before {
  top: 0.72em;
}
#taxi_fare .specs .spec_label {
  display: inline-block;
}
#taxi_fare .specs .luggage_list {
  display: grid;
  row-gap: 2px;
}
#taxi_fare .fare_table {
  width: 88.8%;
  border-collapse: separate;
  border-spacing: 0 6px;
}
#taxi_fare .fare_table th,
#taxi_fare .fare_table td {
  border: 1px solid #ededed;
  background-color: #fff;
  padding: 5px 9px;
  color: #1a3666;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
}
#taxi_fare .fare_table th {
  background-color: transparent;
  border-color: transparent;
  color: #333;
  width: 27.027%;
  white-space: nowrap;
  vertical-align: middle;
}
#taxi_fare .fare_table th:not(:empty) {
  position: relative;
  padding-left: 22px;
  z-index: 1;
}
#taxi_fare .fare_table th:not(:empty)::before {
  content: "";
  width: 4.32rem;
  height: 4.32rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-4px, -50%);
  z-index: -1;
}
#taxi_fare .fare_table td:first-of-type {
  border-right: none;
  position: relative;
}
#taxi_fare .fare_table td:first-of-type::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background-color: #7e7e7e;
}
#taxi_fare .fare_table td:last-child {
  border-left: none;
  color: #333;
  width: 22.523%;
  text-align: left;
  white-space: nowrap;
}
@media screen and (max-width: 1080px) {
  #taxi_fare h2 {
    font-size: 3.6rem;
  }
  #taxi_fare .app_cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #taxi_fare .app_intro {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    margin-bottom: 48px;
  }
  #taxi_fare .app_intro .txt {
    max-width: 100%;
    width: 100%;
  }
  #taxi_fare .app_intro .app_intro_body {
    margin-top: 16px;
  }
  #taxi_fare .app_intro .ph {
    width: 100%;
    flex: 1 1 auto;
    margin-left: 0;
  }
  #taxi_fare .app_card {
    padding: 28px 24px;
    gap: 20px;
  }
  #taxi_fare .app_card .app_icon {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
  }
  #taxi_fare .app_card .name {
    font-size: 2.4rem;
    margin-bottom: 12px;
  }
  #taxi_fare .app_card .stores img {
    height: 48px;
  }
  #taxi_fare .lineup_block {
    padding: 60px calc(50vw - 50% + 34px) 162px;
  }
  #taxi_fare .car_item {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "carphoto" "carhead" "carbody";
    gap: 18px;
  }
  #taxi_fare .car_item .car_info {
    display: contents;
  }
  #taxi_fare .car_item .car_ph {
    grid-area: carphoto;
  }
  #taxi_fare .car_item .car_head_group {
    grid-area: carhead;
  }
  #taxi_fare .car_item .car_body_group {
    grid-area: carbody;
  }
  #taxi_fare .car_body_group,
  #taxi_fare .fare_detail {
    margin-left: 0;
    padding-left: 0;
    min-height: 0;
  }
}
@media screen and (max-width: 840px) {
  #taxi_fare h2 {
    font-size: 2.7rem;
  }
  #taxi_fare h3 {
    font-size: 3rem;
  }
  #taxi_fare .lead {
    margin-bottom: 60px;
  }
  #taxi_fare .app_cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #taxi_fare .app_intro {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "lead" "image" "body";
    gap: 20px;
    margin-bottom: 36px;
  }
  #taxi_fare .app_intro .txt {
    display: contents;
  }
  #taxi_fare .app_intro .app_intro_lead {
    grid-area: lead;
  }
  #taxi_fare .app_intro .app_intro_lead .copy {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  #taxi_fare .app_intro .app_intro_body {
    grid-area: body;
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.75;
  }
  #taxi_fare .app_intro .ph {
    grid-area: image;
    width: 100%;
    flex: none;
    margin: 0;
    border-radius: 8px;
  }
  #taxi_fare .app_card {
    padding: 24px 20px;
    gap: 16px;
  }
  #taxi_fare .app_card .app_icon {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
  }
  #taxi_fare .app_card .stores img {
    height: 44px;
  }
  #taxi_fare .tablet_block .copy_row {
    margin-bottom: 16px;
    gap: 8px;
  }
  #taxi_fare .tablet_block .copy {
    font-size: 2.2rem;
    line-height: 1.35;
  }
  #taxi_fare .tablet_specs {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  #taxi_fare .tablet_specs .spec_box {
    padding: 0;
  }
  #taxi_fare .tablet_specs .spec_box:first-child {
    border-right: 0;
    border-bottom: 1px solid #d6d6d6;
    padding-right: 0;
    padding-bottom: 12px;
  }
  #taxi_fare .tablet_specs .spec_box:last-child {
    padding-left: 0;
  }
  #taxi_fare .tablet_specs .spec_box h4 {
    font-size: 2.2rem;
  }
  #taxi_fare .tablet_specs .spec_box p {
    font-size: 1.8rem;
    min-height: 0;
    display: block;
  }
  #taxi_fare .lineup_block {
    padding: 40px calc(50vw - 50% + 20px) 124px;
    border-radius: 36px 0 0 0;
  }
  #taxi_fare .car_head_group h4 {
    font-size: 2.6rem;
  }
  #taxi_fare .car_head_group .catch {
    font-size: 1.8rem;
  }
  #taxi_fare .car_body_group,
  #taxi_fare .fare_detail {
    margin-left: 0;
    padding-left: 0;
  }
  #taxi_fare .car_body_group::before,
  #taxi_fare .fare_detail::before {
    top: 0;
    left: -20px;
  }
  #taxi_fare .specs li {
    font-size: 1.7rem;
  }
  #taxi_fare .specs .luggage_spec {
    grid-template-columns: max-content minmax(0, 1fr);
  }
  #taxi_fare .fare_table {
    width: 100%;
    display: block;
    border-spacing: 0;
  }
  #taxi_fare .fare_table tbody,
  #taxi_fare .fare_table tr,
  #taxi_fare .fare_table th,
  #taxi_fare .fare_table td {
    display: block;
    width: 100%;
  }
  #taxi_fare .fare_table tr {
    margin-bottom: 8px;
  }
  #taxi_fare .fare_table th:empty {
    display: none;
  }
  #taxi_fare .fare_table th:not(:empty) {
    width: auto;
    padding-left: 22px;
    margin-bottom: 8px;
    border: none;
    background: transparent;
  }
  #taxi_fare .fare_table td {
    border: none;
    background: transparent;
    padding: 0 0 6px 0;
    font-size: 1.7rem;
  }
  #taxi_fare .fare_table td::after {
    display: none;
  }
  #taxi_fare .fare_table td:first-of-type {
    display: inline;
  }
  #taxi_fare .fare_table td:first-of-type::after {
    content: "｜";
    display: inline;
    margin: 0 4px;
    position: static;
    width: auto;
    height: auto;
    background: none;
  }
  #taxi_fare .fare_table td:last-child {
    display: inline;
    width: auto;
    white-space: normal;
  }
  #taxi_fare .app_card .name {
    font-size: 2.6rem;
  }
}

body.page-template-page-taxi-fare footer {
  margin-top: 0;
}

body.page-template-page-airport_stadium {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  background: none;
}

.fix_btn {
  background-color: #ac8e4b;
  width: 260px;
  border-radius: 50px 0 0 50px;
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 100;
  padding: 10px;
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 15px;
}
.fix_btn .icon {
  width: 50px;
}
.fix_btn .icon img {
  width: 100%;
  height: auto;
}
.fix_btn .txt {
  flex: 1;
}
.fix_btn .txt p {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
  text-align: center;
}
.fix_btn .txt p:nth-of-type(1) {
  background-color: #97701c;
  border-radius: 50px;
  padding: 5px 10px;
}
.fix_btn .txt p.tel {
  font-size: 1.8rem;
  margin-top: 5px;
}
@media screen and (min-width: 541px) {
  .fix_btn {
    pointer-events: none;
  }
}
@media screen and (max-width: 540px) {
  .fix_btn {
    width: 94%;
    right: 3%;
    border-radius: 5px;
    bottom: 10px;
  }
}

#airport_stadium_hero {
  position: relative;
  background: #ffef86;
  overflow: hidden;
  padding-top: 0;
}
#airport_stadium_hero::before {
  content: "";
  width: 100%;
  aspect-ratio: 1/0.25;
  background-image: url(images/airport-stadium/back.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: absolute;
  bottom: 0;
}
#airport_stadium_hero .inner {
  display: flex;
  flex-flow: row wrap;
  align-items: end;
  padding: 50px 0;
}
#airport_stadium_hero .inner .left {
  width: 55%;
}
#airport_stadium_hero .inner .left h1 {
  margin-bottom: 50px;
}
#airport_stadium_hero .inner .left .txt {
  display: flex;
  flex-flow: column;
  align-items: center;
}
#airport_stadium_hero .inner .left .txt p {
  color: #3e3a39;
  font-size: 3rem;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
#airport_stadium_hero .inner .left .txt p:nth-of-type(1) {
  position: relative;
}
#airport_stadium_hero .inner .left .txt p:nth-of-type(1)::before, #airport_stadium_hero .inner .left .txt p:nth-of-type(1)::after {
  content: "";
  background-image: url(images/airport-stadium/line.webp);
  width: 30px;
  aspect-ratio: 1/1.1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
}
#airport_stadium_hero .inner .left .txt p:nth-of-type(1)::before {
  left: 0;
  transform: translate(-30px, -50%) scale(-1, 1);
}
#airport_stadium_hero .inner .left .txt p:nth-of-type(1)::after {
  right: 0;
  transform: translate(30px, -50%);
}
#airport_stadium_hero .inner .left .txt p.copy {
  color: #1a3666;
  font-size: 4rem;
}
#airport_stadium_hero .inner .left .txt p.copy span {
  font-size: 3rem;
  color: #000;
}
@media screen and (max-width: 840px) {
  #airport_stadium_hero .inner .left .txt p.copy {
    font-size: 3rem;
  }
  #airport_stadium_hero .inner .left .txt p.copy span {
    font-size: 2.5rem;
  }
}
#airport_stadium_hero .inner .right {
  flex: 1;
}
#airport_stadium_hero .screen-reader-text {
  width: 1px;
  height: 1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#airport_stadium_hero img {
  display: block;
  width: 100%;
  height: auto;
}
#airport_stadium_hero .hero_phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 19%;
  height: 14%;
}

#airport_stadium {
  color: #333;
}
#airport_stadium .direct_inner {
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
}
#airport_stadium .direct_intro {
  min-height: 850px;
  padding: 110px 20px;
  position: relative;
  background-color: #fff;
}
#airport_stadium .intro_inner {
  width: min(520px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
#airport_stadium .intro_inner h2 {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: start;
  gap: 4px 10px;
  margin-bottom: 70px;
  color: #333;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 70px;
}
#airport_stadium .intro_inner h2 figure img {
  width: 290px;
}
#airport_stadium .intro_inner h2 span {
  width: 100%;
  text-align: left;
  font-size: 3.3rem;
  font-weight: 700;
  padding-left: 15px;
  margin-bottom: 10px;
}
#airport_stadium .intro_inner h2 em {
  font-size: 2.4rem;
  font-weight: 700;
  font-style: normal;
}
#airport_stadium .intro_inner p {
  font-size: 1.8rem;
  line-height: 2.5;
  margin-bottom: 24px;
  text-align: center;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  font-style: normal;
}
#airport_stadium .intro_photo {
  width: 245px;
  position: absolute;
}
#airport_stadium .intro_photo_night {
  width: 33rem;
  top: 15%;
  left: 0;
}
#airport_stadium .intro_photo_kobe {
  width: 20rem;
  top: 5%;
  right: 10%;
}
#airport_stadium .intro_photo_airport {
  width: 40rem;
  bottom: 5%;
  right: 0;
}
#airport_stadium .intro_photo_dome {
  width: 25rem;
  bottom: 9%;
  left: 8%;
}
#airport_stadium .direct_section {
  padding: 100px 0;
}
#airport_stadium .direct_heading {
  width: min(420px, 85%);
  padding: 12px 20px;
  margin: 0 auto 70px;
  color: #fff;
  background-color: #ed929e;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transform: skew(-8deg);
}
#airport_stadium .direct_subheading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto;
  border-bottom: #fff solid 10px;
  line-height: 0.5;
}
#airport_stadium .direct_subheading::before, #airport_stadium .direct_subheading::after {
  content: "";
  background-image: url(images/airport-stadium/line.webp);
  width: 30px;
  aspect-ratio: 1/1.1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
}
#airport_stadium .direct_subheading::before {
  left: 0;
  transform: translate(-30px, -50%) scale(-1, 1);
}
#airport_stadium .direct_subheading::after {
  right: 0;
  transform: translate(30px, -50%);
}
#airport_stadium .direct_subheading span {
  margin: 0 6px;
  font-size: 4rem;
}
#airport_stadium .direct_spots,
#airport_stadium .direct_fares {
  background-color: #f8f4ef;
  border-radius: 120px 0 0;
}
#airport_stadium .spot_overview {
  width: min(980px, 100%);
  margin: 0 auto;
}
#airport_stadium .spot_overview .spot_group:not(:first-child) {
  margin-top: 48px;
}
#airport_stadium .spot_overview .spot_group h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 2.2rem;
  font-weight: 700;
}
#airport_stadium .spot_overview .spot_group h3::before {
  content: "";
  width: 18px;
  height: 22px;
  flex: 0 0 18px;
  background-color: #ed929e;
  transform: skew(-8deg);
}
#airport_stadium .spot_overview .spot_overview_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 22px;
}
#airport_stadium .spot_overview .spot_overview_grid figure {
  min-width: 0;
  position: relative;
}
#airport_stadium .spot_overview .spot_overview_grid figure p {
  font-size: 1.8rem;
  color: #004da0;
  border: 2px solid #4079b8;
  border-radius: 6px;
  position: absolute;
  right: 10%;
  bottom: -2%;
  width: 170px;
  padding: 10px;
  line-height: 1;
  text-align: center;
  background-color: #fff;
}
#airport_stadium .spot_overview img {
  display: block;
  width: 100%;
  height: auto;
}
#airport_stadium .direct_button {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 16px;
  margin: 90px auto 110px;
  padding: 9px 14px 9px 28px;
  border-radius: 100px;
  color: #fff;
  background-color: #b39143;
  font-size: 1.8rem;
  font-weight: 700;
}
#airport_stadium .direct_button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #b39143;
  background-color: #fff;
}
#airport_stadium .usecase_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}
#airport_stadium .usecase_card {
  border-radius: 22px;
  background-color: #fff;
  text-align: center;
  overflow: hidden;
}
#airport_stadium .usecase_card .inner {
  padding: 0 35px 28px;
}
#airport_stadium .usecase_card .inner .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 10px;
}
#airport_stadium .usecase_card .inner .row figure {
  flex: 1;
}
#airport_stadium .usecase_card .inner .row figure img {
  margin-top: 0;
}
#airport_stadium .usecase_card .usecase_title {
  margin: 0 -35px;
  padding: 14px 10px 5px;
  color: #fff;
  background-color: #0757a9;
  font-size: 2rem;
  font-weight: 700;
}
#airport_stadium .usecase_card .usecase_title span {
  color: #ffef86;
}
#airport_stadium .usecase_card .usecase_title span.big_yl {
  font-size: 3.4rem;
}
#airport_stadium .usecase_card .usecase_tags {
  display: flex;
  gap: 8px;
  margin: 0 0 34px;
  padding: 0 10px 8px;
  background-color: #0757a9;
  justify-content: center;
}
#airport_stadium .usecase_card .usecase_tags span {
  width: 160px;
  font-size: 1.6rem;
  padding: 8px 2px;
  border-radius: 6px;
  color: #0757a9;
  background-color: #fff;
  font-weight: 700;
  border: 2px solid #4079b8;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#airport_stadium .usecase_card .usecase_tags span.s_txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 540px) {
  #airport_stadium .usecase_card .usecase_tags span.s_txt {
    font-size: 1.2rem;
  }
}
#airport_stadium .usecase_card .usecase_problem {
  min-height: 80px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
}
#airport_stadium .usecase_card .usecase_arrow {
  width: 0;
  height: 0;
  margin: 15px auto 35px;
  border-top: 22px solid #cad9e8;
  border-right: 35px solid transparent;
  border-left: 35px solid transparent;
}
#airport_stadium .usecase_card h3 {
  font-size: 2.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto;
  position: relative;
}
#airport_stadium .usecase_card h3::before, #airport_stadium .usecase_card h3::after {
  content: "";
  background-image: url(images/airport-stadium/line.webp);
  width: 45px;
  aspect-ratio: 1/1.1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
}
#airport_stadium .usecase_card h3::before {
  left: 0;
  transform: translate(-40px, -50%) scale(-1, 1);
}
#airport_stadium .usecase_card h3::after {
  right: 0;
  transform: translate(40px, -50%);
}
#airport_stadium .usecase_card h3 img {
  max-width: 200px;
}
#airport_stadium .usecase_card h3 strong {
  color: #fff;
  padding: 5px 8px;
  background-color: #ed929e;
  font-size: 3.5rem;
  font-style: italic;
}
#airport_stadium .usecase_card .il {
  width: 80%;
  margin: 35px auto;
}
#airport_stadium .usecase_card ul {
  display: grid;
  gap: 10px;
  text-align: left;
}
#airport_stadium .usecase_card ul li {
  padding: 18px 15px 18px 33px;
  position: relative;
  border-radius: 8px;
  background-color: #fde7eb;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.7;
}
#airport_stadium .usecase_card ul li span {
  color: #ed6f8d;
}
#airport_stadium .usecase_card ul li::before {
  content: "";
  width: 11px;
  height: auto;
  position: absolute;
  top: 30px;
  left: 13px;
  border-radius: 50%;
  background-color: #f16b87;
  aspect-ratio: 1/1;
}
#airport_stadium .usecase_card ul li span {
  color: #ff5275;
}
#airport_stadium .reservation_note {
  margin: 70px auto 28px;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  font-style: normal;
}
#airport_stadium .direct_area {
  background-color: #fff;
}
#airport_stadium .direct_area .area_map {
  width: min(900px, 100%);
  margin: 0 auto 55px;
  overflow: hidden;
  border-radius: 20px;
}
#airport_stadium .direct_area .area_map img {
  display: block;
  width: 100%;
}
#airport_stadium .zone {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 25px 0;
  border-bottom: 1px solid #aaa;
}
#airport_stadium .zone h3 {
  align-self: start;
  padding: 14px 10px;
  border-radius: 7px;
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
#airport_stadium .zone p,
#airport_stadium .zone li {
  font-size: 1.8rem;
  line-height: 1.7;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  font-style: normal;
}
#airport_stadium .zone p {
  margin-bottom: 8px;
}
#airport_stadium .zone li {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
#airport_stadium .zone li span {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 4px;
}
#airport_stadium .zone li u {
  flex: 1;
  text-decoration: none;
}
#airport_stadium .zone_a h3 {
  background-color: #ef4c4c;
}
#airport_stadium .zone_a li span {
  background-color: #fbd8d8;
  font-size: 1.5rem;
}
#airport_stadium .zone_b h3 {
  background-color: #69be23;
}
#airport_stadium .zone_b li span {
  background-color: #e4f2d6;
}
#airport_stadium .zone_c {
  align-items: center;
}
#airport_stadium .zone_c h3 {
  background-color: #188cc8;
}
#airport_stadium .zone_out {
  align-items: center;
}
#airport_stadium .zone_out h3 {
  background-color: #8798a2;
}
#airport_stadium .area_note {
  margin-top: 20px;
  font-size: 1.8rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  font-style: normal;
}
#airport_stadium .fare_wrap {
  position: relative;
}
#airport_stadium .fare_wrap h3 {
  margin-bottom: 18px;
  font-size: 2.7rem;
  text-align: center;
}
#airport_stadium .fare_wrap h3 span {
  margin-left: 16px;
  font-size: 1.8rem;
}
#airport_stadium .fare_badge {
  width: 145px;
  /* height: 125px; */
  aspect-ratio: 1/1;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  position: absolute;
  top: -20px;
  left: 50px;
  transform: rotate(-10deg);
  background-image: url(images/airport-stadium/point.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
#airport_stadium .fare_badge span {
  font-size: 3.8rem;
}
@media screen and (max-width: 840px) {
  #airport_stadium .fare_badge {
    transform: scale(0.8) rotate(-10deg);
    left: 0;
    top: 0px;
  }
}
#airport_stadium .fare_table_wrap table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px;
  text-align: center;
}
#airport_stadium .fare_table_wrap th,
#airport_stadium .fare_table_wrap td {
  padding: 12px 10px;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}
#airport_stadium .fare_table_wrap td {
  font-size: 2.4rem;
  position: relative;
}
#airport_stadium .fare_table_wrap td span {
  font-size: 1.8rem;
}
#airport_stadium .fare_table_wrap td::after {
  content: "";
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #fff 5%, #ffd900 5% 95%, #fff 95%);
  position: absolute;
  right: -4px;
  top: 0%;
}
#airport_stadium .fare_table_wrap td:nth-last-of-type(1)::after {
  content: none;
}
@media screen and (max-width: 540px) {
  #airport_stadium .fare_table_wrap td {
    font-size: 2rem;
  }
}
#airport_stadium .fare_table_wrap thead th {
  color: #fff;
  background-color: #f0514f;
  font-size: 2.6rem;
  border-radius: 13px 13px 0 0;
}
#airport_stadium .fare_table_wrap thead th:nth-child(3) {
  background-color: #6fba2c;
}
#airport_stadium .fare_table_wrap thead th:nth-child(4) {
  background-color: #1b86c9;
}
#airport_stadium .fare_table_wrap thead th:first-child {
  background-color: transparent;
}
@media screen and (max-width: 540px) {
  #airport_stadium .fare_table_wrap thead th {
    font-size: 1.8rem;
  }
}
#airport_stadium .fare_table_wrap tbody th {
  border-radius: 8px;
  background-color: #ffeb81;
  font-size: 2rem;
  width: 215px;
  height: 67px;
}
@media screen and (max-width: 540px) {
  #airport_stadium .fare_table_wrap tbody th {
    font-size: 1.6rem;
    width: 155px;
    height: 57px;
  }
}
#airport_stadium .fare_table_wrap small {
  margin-left: 2px;
  font-size: 1rem;
}
#airport_stadium .fare_notes {
  margin: 18px 0;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 80px;
}
#airport_stadium .fare_notes li {
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 540px) {
  #airport_stadium .fare_notes li {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 841px) {
  #airport_stadium .usecase_card {
    display: flex;
    flex-direction: column;
  }
  #airport_stadium .usecase_card .usecase_title {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 0.15em;
         column-gap: 0.15em;
    line-height: 1.15;
  }
  #airport_stadium .usecase_card .usecase_tags {
    min-height: 55px;
  }
  #airport_stadium .usecase_card .inner {
    display: flex;
    flex: 1;
    flex-direction: column;
  }
  #airport_stadium .usecase_card .inner .row {
    min-height: 142px;
  }
  #airport_stadium .usecase_card .usecase_problem {
    min-height: 0;
  }
  #airport_stadium .usecase_card h3 {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }
  #airport_stadium .usecase_card ul {
    height: 255px;
    min-height: 0;
  }
  #airport_stadium .usecase_card ul li {
    display: flex;
    min-height: 84px;
    align-items: center;
    box-sizing: border-box;
  }
  #airport_stadium .usecase_card ul li .usecase_li_text {
    flex: 1;
    min-width: 0;
    line-height: inherit;
  }
  #airport_stadium .usecase_card ul li::before {
    top: 50%;
    transform: translateY(-50%);
  }
  #airport_stadium .usecase_card .il {
    display: flex;
    height: 225px;
    align-items: flex-end;
    justify-content: center;
    margin: 28px auto 32px;
  }
  #airport_stadium .usecase_card .il img {
    width: auto;
    max-height: 100%;
  }
  #airport_stadium .zone_c h3,
  #airport_stadium .zone_out h3 {
    align-self: center;
  }
  #airport_stadium .zone_c > div,
  #airport_stadium .zone_out > div {
    display: flex;
    align-items: center;
  }
  #airport_stadium .zone_c p,
  #airport_stadium .zone_out p {
    margin-bottom: 0;
    text-align: center;
  }
  #airport_stadium .fare_badge span {
    display: inline-block;
    transform: translateY(-20px);
  }
}
@media screen and (max-width: 840px) {
  #airport_stadium .direct_intro {
    min-height: auto;
    padding: 80px 20px 90px;
  }
  #airport_stadium .intro_photo_night {
    width: 20rem;
  }
  #airport_stadium .intro_photo_kobe {
    width: 14rem;
  }
  #airport_stadium .intro_photo_airport {
    width: 20rem;
  }
  #airport_stadium .intro_photo_dome,
  #airport_stadium .intro_photo_baseball {
    display: none;
  }
  #airport_stadium .spot_card figure {
    height: 160px;
  }
  #airport_stadium .direct_section {
    padding: 80px 0;
  }
  #airport_stadium .spot_overview .spot_overview_grid {
    gap: 20px;
  }
  #airport_stadium .direct_spots,
  #airport_stadium .direct_fares {
    border-radius: 70px 0 0;
  }
  #airport_stadium .usecase_grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 540px) {
  #airport_stadium_hero .inner {
    flex-flow: column;
    align-items: center;
  }
  #airport_stadium_hero .inner .left {
    width: 90%;
  }
  #airport_stadium_hero .inner .left .txt p.copy {
    font-size: 2.6rem;
  }
  #airport_stadium .direct_inner {
    width: min(100% - 24px, 1100px);
  }
  #airport_stadium .direct_intro {
    padding: 58px 16px;
  }
  #airport_stadium .intro_inner h2 {
    margin-bottom: 38px;
  }
  #airport_stadium .intro_inner h2 span {
    font-size: 2rem;
  }
  #airport_stadium .intro_inner h2 strong {
    font-size: 3.8rem;
  }
  #airport_stadium .intro_inner h2 em {
    font-size: 1.8rem;
  }
  #airport_stadium .intro_inner p {
    font-size: 1.4rem;
    line-height: 1.9;
  }
  #airport_stadium .intro_inner p br {
    display: none;
  }
  #airport_stadium .intro_photo_night {
    width: 12rem;
    /* height: 250px; */
    top: -100px;
    left: 0;
  }
  #airport_stadium .intro_photo_kobe {
    width: 9rem;
    /* height: 120px; */
    top: 0px;
    right: 10px;
  }
  #airport_stadium .intro_photo_airport {
    width: 14rem;
    /* height: 210px; */
    right: 0;
    display: none;
  }
  #airport_stadium .direct_section {
    padding: 58px 0;
  }
  #airport_stadium .direct_heading {
    margin-bottom: 42px;
    font-size: 2rem;
  }
  #airport_stadium .direct_subheading {
    margin-bottom: 32px;
    font-size: 2rem;
  }
  #airport_stadium .direct_subheading span {
    font-size: 3.2rem;
  }
  #airport_stadium .spot_overview .spot_group {
    margin-bottom: 36px;
  }
  #airport_stadium .spot_overview .spot_group h3 {
    margin-bottom: 18px;
    font-size: 1.7rem;
  }
  #airport_stadium .spot_overview .spot_overview_grid {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 65%;
    margin: 0 auto;
  }
  #airport_stadium .direct_button {
    margin: 58px auto 70px;
    padding-left: 18px;
    font-size: 1.4rem;
  }
  #airport_stadium .usecase_grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  #airport_stadium .usecase_card .usecase_title {
    margin: 0 -18px;
    font-size: 1.6rem;
  }
  #airport_stadium .usecase_card .usecase_tags {
    margin: 0 -5px 20px;
  }
  #airport_stadium .usecase_card .usecase_tags span {
    font-size: 1.2rem;
  }
  #airport_stadium .usecase_card .usecase_problem {
    min-height: auto;
    font-size: 1.4rem;
  }
  #airport_stadium .usecase_card .usecase_arrow {
    margin: 12px auto 25px;
  }
  #airport_stadium .usecase_card h3 {
    font-size: 1.7rem;
  }
  #airport_stadium .usecase_card h3 strong {
    font-size: 2.6rem;
  }
  #airport_stadium .usecase_card ul li {
    font-size: 1.3rem;
  }
  #airport_stadium .reservation_note {
    margin-top: 45px;
    font-size: 1.3rem;
  }
  #airport_stadium .direct_area .area_map {
    margin-bottom: 32px;
  }
  #airport_stadium .direct_area .area_map img {
    max-width: none;
  }
  #airport_stadium .zone {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  #airport_stadium .zone h3 {
    width: 100%;
    font-size: 1.7rem;
    padding: 6px 10px;
  }
  #airport_stadium .zone p,
  #airport_stadium .zone li {
    font-size: 1.25rem;
    align-items: center;
  }
  #airport_stadium .fare_wrap {
    display: block;
  }
  #airport_stadium .fare_wrap h3 {
    font-size: 1.9rem;
  }
  #airport_stadium .fare_wrap h3 span {
    display: block;
    margin: 8px 0 0;
    font-size: 1.3rem;
  }
  #airport_stadium .fare_badge {
    width: 86px;
    height: 86px;
    font-size: 1.8rem;
  }
  #airport_stadium .fare_table_wrap {
    overflow-x: auto;
  }
  #airport_stadium .fare_table_wrap table {
    min-width: 620px;
  }
  #airport_stadium .fare_notes {
    margin: 16px 0 32px;
  }
}
#service_title {
  padding-bottom: 100px;
}
#service_title .inner {
  display: flex;
  flex-flow: row wrap;
  gap: 75px;
}
@media screen and (max-width: 840px) {
  #service_title .inner {
    gap: 20px;
  }
}
#service_title .inner .txt {
  width: 45%;
  position: relative;
}
@media screen and (max-width: 540px) {
  #service_title .inner .txt {
    width: 100%;
  }
}
#service_title .inner .txt .num {
  font-size: 14rem;
  color: #fff;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1;
  z-index: -1;
}
@media screen and (max-width: 540px) {
  #service_title .inner .txt .num {
    font-size: 9rem;
    top: -10px;
    right: -4px;
  }
}
#service_title .inner .ph {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 1/0.7;
  border-radius: 20px;
  background-color: transparent;
  overflow: hidden;
}
@media screen and (max-width: 540px) {
  #service_title .inner .ph {
    flex-basis: 100%;
  }
}
#service_title .inner .ph img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#service_title .h2_wrap {
  color: #1a3666;
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 40px;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}
#service_title .h2_wrap span {
  font-size: 2rem;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 540px) {
  #service_title .h2_wrap {
    font-size: 3.2rem;
    margin-bottom: 24px;
  }
  #service_title .h2_wrap span {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 540px) {
  .page-template-page-vehicle-management #service_title,
  .page-template-page-maintenance #service_title,
  .page-template-page-care #service_title,
  .page-template-page-welfare #service_title {
    padding-bottom: 40px;
  }
}
#service_detail {
  background: linear-gradient(to bottom, #ebf1f7 80%, #fff);
  border-radius: 140px 0 0 0;
  padding: 100px;
}
@media screen and (max-width: 840px) {
  #service_detail {
    border-radius: 100px 0 0 0;
    padding: 40px;
  }
}
@media screen and (max-width: 540px) {
  #service_detail {
    padding: 25px 20px;
  }
}
#service_detail h4 {
  margin: 20px 0;
}
#service_detail h3 {
  font-size: 3.5rem;
  position: relative;
  padding-left: 40px;
  text-align: left;
}
#service_detail h3 span {
  font-size: 2.6rem;
  color: #ac8e4b;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 10px;
  white-space: nowrap;
}
@media screen and (max-width: 540px) {
  #service_detail h3 span {
    display: block;
    font-size: 1.6rem;
    margin-left: 0;
    margin-top: 8px;
  }
}
#service_detail h3::before {
  content: "";
  background-color: #ac8e4b;
  width: 14px;
  aspect-ratio: 1/1;
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 540px) {
  #service_detail h3 {
    font-size: 2rem;
    line-height: 1.35;
    word-break: keep-all;
    overflow-wrap: normal;
  }
  #service_detail h3::before {
    top: 0.68em;
  }
}
#service_detail .wh_inner {
  background-color: #fff;
  max-width: 100%;
  width: 100%;
  border-radius: 12px;
  padding: 40px 0 20px;
}
#service_detail .wh_inner .inner {
  width: 90%;
}
#service_detail .lead {
  margin: 30px 0;
}

.se_wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 80px;
  margin: 40px 0 100px;
}
.se_wrap .item {
  flex: 0 0 calc((100% - 80px) / 2);
  box-sizing: border-box;
  min-width: 0;
}
@media screen and (max-width: 840px) {
  .se_wrap .item {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 540px) {
  .se_wrap .item {
    flex: 1 1 100%;
  }
}
.se_wrap .item .ph {
  aspect-ratio: 1/0.7;
  border-radius: 10px;
  background-color: #ddd;
  overflow: hidden;
}
.se_wrap .item .ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.se_wrap .item .title {
  font-size: 2.8rem;
  color: #1f1f1f;
  margin: 10px 0;
}
@media screen and (max-width: 840px) {
  .se_wrap .item .title {
    font-size: 2.2rem;
  }
}
.se_wrap .item .link_btn {
  color: #1a3666;
  font-size: 1.8rem;
  margin: 25px 0 0 auto;
}
@media screen and (max-width: 840px) {
  .se_wrap {
    gap: 30px;
  }
}

.service-text-only {
  gap: 30px;
}
.service-text-only.service-one-column .item {
  flex: 1 1 100%;
}
.service-text-only .item {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
}
@media screen and (max-width: 540px) {
  .service-text-only .item {
    padding: 20px;
  }
}
.service-text-only .item .title {
  margin-top: 0;
}

.service_photo_pair {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  margin: 30px 0 20px;
}
.service_photo_pair figure {
  min-width: 0;
  aspect-ratio: 10/7;
  border-radius: 10px;
  overflow: hidden;
  width: calc((100% - 20px) / 2);
}
.service_photo_pair figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.service_photo_pair p {
  text-align: center;
}
.service_photo_pair p:nth-of-type(1) {
  margin-top: 10px;
  margin-bottom: 10px;
}
.service_photo_pair p a {
  color: #0058b4;
  font-size: 1.4rem;
  border: 1px solid #0058b4;
  border-radius: 50px;
  padding: 3px 15px;
  width: 100%;
  display: inline-block;
  margin-bottom: 3px;
  transition: all ease 0.3s;
  word-break: keep-all;
}
.service_photo_pair p a:hover {
  background-color: #0058b4;
  color: #fff;
}
@media screen and (max-width: 840px) {
  .service_photo_pair {
    gap: 8px;
  }
  .service_photo_pair figure {
    width: calc((100% - 8px) / 2);
  }
}
@media screen and (max-width: 540px) {
  .service_photo_pair {
    margin-bottom: 0;
  }
  .service_photo_pair figure {
    width: 100%;
    min-height: 90px;
  }
}

.service_photo_pair2 {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  margin: 30px 0 20px;
}
.service_photo_pair2 .item {
  width: calc((100% - 40px) / 3);
}
.service_photo_pair2 figure {
  min-width: 0;
  aspect-ratio: 10/7;
  border-radius: 10px;
  overflow: hidden;
}
.service_photo_pair2 figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.service_photo_pair2 p {
  text-align: center;
}
.service_photo_pair2 p:nth-of-type(1) {
  margin-top: 10px;
  margin-bottom: 10px;
}
.service_photo_pair2 p a {
  color: #0058b4;
  font-size: 1.4rem;
  border: 1px solid #0058b4;
  border-radius: 50px;
  padding: 3px 15px;
  width: 100%;
  display: inline-block;
  margin-bottom: 3px;
  transition: all ease 0.3s;
  word-break: keep-all;
}
.service_photo_pair2 p a:hover {
  background-color: #0058b4;
  color: #fff;
}
@media screen and (max-width: 840px) {
  .service_photo_pair2 {
    gap: 8px;
  }
  .service_photo_pair2 .item {
    width: calc((100% - 8px) / 2);
  }
}
@media screen and (max-width: 540px) {
  .service_photo_pair2 {
    margin-bottom: 0;
  }
  .service_photo_pair2 .item {
    width: 100%;
    min-height: 90px;
  }
}

.service-faq {
  margin-top: 80px;
}
.service-faq dl {
  margin-top: 30px;
}
.service-faq .item {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px 30px;
}
.service-faq .item:not(:first-child) {
  margin-top: 16px;
}
@media screen and (max-width: 540px) {
  .service-faq .item {
    padding: 20px;
  }
}
.service-faq dt,
.service-faq dd {
  position: relative;
  padding-left: 34px;
}
.service-faq dt {
  color: #004da0;
  font-size: 1.8rem;
  font-weight: bold;
}
.service-faq dt::before {
  content: "Q";
  color: #004da0;
}
.service-faq dd {
  margin-top: 12px;
}
.service-faq dd::before {
  content: "A";
  color: #ac8e4b;
}
.service-faq dt::before,
.service-faq dd::before {
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  position: absolute;
  top: 0;
  left: 0;
}

.case_wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 47px;
  margin: 40px 0 50px;
}
.case_wrap .item {
  flex: 1;
  position: relative;
}
@media screen and (max-width: 840px) {
  .case_wrap .item {
    flex: 0 0 calc((100% - 47px) / 2);
  }
}
@media screen and (max-width: 540px) {
  .case_wrap .item {
    flex: 100%;
  }
}
.case_wrap .item .ph {
  width: 100%;
  aspect-ratio: 1/0.7;
  background-color: #ddd;
  overflow: hidden;
}
.case_wrap .item .ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.case_wrap .item .title {
  color: #004da0;
  margin: 10px 0;
}
.case_wrap .item .num {
  width: 46px;
  aspect-ratio: 1/1;
  border-radius: 50px;
  font-size: 2rem;
  color: #fff;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #004da0;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

#about .about_inner {
  margin-top: 50px;
}
#about .about_inner article {
  border-radius: 50px 0 0 0;
  background-color: #fff;
  padding: 80px;
  padding-bottom: 160px;
  display: flex;
  justify-content: center;
}
#about .about_inner article:nth-of-type(2n) {
  background: url(./images/about/about-article-bg.webp) left top/cover;
}
#about .about_inner article:nth-of-type(n + 2) {
  margin-top: -80px;
}
#about .about_inner article:first-of-type .wrap {
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
@media screen and (max-width: 540px) {
  #about .about_inner article:first-of-type .wrap {
    gap: 24px;
  }
}
#about .about_inner article:first-of-type .wrap .about-title {
  align-self: stretch;
  width: 100%;
}
#about .about_inner article:first-of-type .wrap .about-detail {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
#about .about_inner article:first-of-type .wrap .about-detail p {
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 840px) {
  #about .about_inner article {
    top: 100px;
  }
}
@media screen and (max-width: 540px) {
  #about .about_inner article {
    border-radius: 30px 0 0 0;
    padding: 25px 15px;
    padding-bottom: 160px;
  }
}
#about .about_inner article .wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 60px;
  width: 100%;
  max-width: 1220px;
  justify-content: space-between;
}
#about .about_inner article .wrap .about-title h3 {
  font-size: 3.5rem;
}
#about .about_inner article .wrap .about-title h3::before {
  content: "";
  display: inline-block;
  height: 1.4rem;
  width: 1.4rem;
  background-color: #ac8e4b;
  border-radius: 1.4rem;
  margin-right: 1rem;
}
#about .about_inner article .wrap .about-title h3 span {
  font-size: 2.6rem;
  color: #ac8e4b;
  margin-left: 1.2rem;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
}
#about .about_inner article .wrap .about-title h3 span.about-title-en-break-sm {
  white-space: nowrap;
}
@media screen and (max-width: 840px) {
  #about .about_inner article .wrap .about-title h3 span.about-title-en-break-sm {
    display: inline;
    margin-left: 1.2rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 540px) {
  #about .about_inner article .wrap .about-title h3 {
    font-size: 2.5rem;
  }
  #about .about_inner article .wrap .about-title h3 span {
    font-size: 2rem;
  }
}
#about .about_inner article .wrap .about-detail {
  width: 70%;
}
#about .about_inner article .wrap .about-detail p {
  font-size: 2.8rem;
}
#about .about_inner article .wrap .about-detail p span {
  color: #004da0;
}
@media screen and (max-width: 540px) {
  #about .about_inner article .wrap .about-detail p .about-policy-break {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  #about .about_inner article .wrap .about-detail p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 840px) {
  #about .about_inner article .wrap .about-detail {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  #about .about_inner article .wrap {
    gap: 30px;
  }
}
#about .about_inner article:nth-of-type(2) .about-detail {
  width: 100%;
}
#about .about_inner article:nth-of-type(2) .about-detail > p {
  margin-left: 5%;
  margin-right: 5%;
  font-size: 1.8rem;
}
@media screen and (max-width: 540px) {
  #about .about_inner article:nth-of-type(2) .about-detail > p {
    font-size: 1.4rem;
  }
}
#about .about_inner article:nth-of-type(2) .about-detail figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#about .about_inner article:nth-of-type(2) .about-detail figure img:first-of-type {
  width: 65%;
  margin: 65px auto 0;
}
@media screen and (max-width: 540px) {
  #about .about_inner article:nth-of-type(2) .about-detail figure img:first-of-type {
    margin: 35px auto 0;
  }
}
#about .about_inner article:nth-of-type(2) .about-detail figure img:nth-of-type(2) {
  width: 90%;
  margin: 18px auto 0;
}
@media screen and (max-width: 540px) {
  #about .about_inner article:nth-of-type(2) .about-detail figure img:nth-of-type(2) {
    width: 100%;
  }
}
#about .about_inner article:nth-of-type(2) .about-detail figure .link_btn {
  color: #1a3666;
  margin-top: 80px;
  margin-bottom: 20px;
}
@media screen and (max-width: 540px) {
  #about .about_inner article:nth-of-type(2) .about-detail figure .link_btn {
    margin-top: 40px;
    margin-bottom: 0;
  }
}
#about .about_inner article:nth-of-type(3) .about-detail-list, #about .about_inner article:nth-of-type(4) .about-detail-list {
  padding: 0;
}
#about .about_inner article:nth-of-type(3) .about-detail-list li::after, #about .about_inner article:nth-of-type(4) .about-detail-list li::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #ac8e4b;
  margin-top: 40px;
  margin-bottom: 40px;
}
#about .about_inner article:nth-of-type(3) .about-detail-list li:last-of-type::after, #about .about_inner article:nth-of-type(4) .about-detail-list li:last-of-type::after {
  display: none;
}
#about .about_inner article:nth-of-type(3) .about-detail-list li .about-detail-flex {
  display: flex;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 80px;
}
@media screen and (max-width: 840px) {
  #about .about_inner article:nth-of-type(3) .about-detail-list li .about-detail-flex {
    padding-right: 0;
  }
}
#about .about_inner article:nth-of-type(3) .about-detail-list li .about-detail-flex .about-detail-num {
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  flex: 0 0 auto;
  font-size: 5.6rem;
  color: #ac8e4b;
  margin-right: 50px;
  line-height: 1;
}
@media screen and (max-width: 540px) {
  #about .about_inner article:nth-of-type(3) .about-detail-list li .about-detail-flex .about-detail-num {
    font-size: 3.6rem;
    margin-right: 10px;
  }
}
#about .about_inner article:nth-of-type(3) .about-detail-list li .about-detail-flex .about-detail-txt {
  flex: 1;
  min-width: 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 540px) {
  #about .about_inner article:nth-of-type(3) .about-detail-list li .about-detail-flex .about-detail-txt {
    font-size: 1.6rem;
  }
}
#about .about_inner article:nth-of-type(3) .about-detail-list li .about-detail-flex .about-detail-heading-text {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  display: block;
  color: #3f5665;
  font-size: 2.6rem;
  line-height: 1.45;
  margin-bottom: 0.35em;
}
@media screen and (max-width: 540px) {
  #about .about_inner article:nth-of-type(3) .about-detail-list li .about-detail-flex .about-detail-heading-text {
    font-size: 2rem;
  }
}
#about .about_inner article:nth-of-type(3) .wrap {
  flex-flow: column;
}
#about .about_inner article:nth-of-type(3) .wrap .about-detail {
  margin-left: auto;
}
#about .about_inner article:nth-of-type(4) .about-detail-list li .about-detail-flex {
  display: flex;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 80px;
}
@media screen and (max-width: 840px) {
  #about .about_inner article:nth-of-type(4) .about-detail-list li .about-detail-flex {
    padding-right: 0;
  }
}
#about .about_inner article:nth-of-type(4) .about-detail-list li .about-detail-flex .about-detail-num {
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  flex: 0 0 auto;
  font-size: 5.6rem;
  color: #ac8e4b;
  margin-right: 50px;
  line-height: 1;
}
@media screen and (max-width: 540px) {
  #about .about_inner article:nth-of-type(4) .about-detail-list li .about-detail-flex .about-detail-num {
    font-size: 3.6rem;
    margin-right: 10px;
  }
}
#about .about_inner article:nth-of-type(4) .about-detail-list li .about-detail-flex .about-detail-txt {
  flex: 1;
  min-width: 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 540px) {
  #about .about_inner article:nth-of-type(4) .about-detail-list li .about-detail-flex .about-detail-txt {
    font-size: 1.6rem;
  }
}
#about .about_inner article:nth-of-type(4) .about-detail-list li .about-detail-flex .about-detail-heading-text {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  display: block;
  color: #3f5665;
  font-size: 2.6rem;
  line-height: 1.45;
  margin-bottom: 0.35em;
}
@media screen and (max-width: 540px) {
  #about .about_inner article:nth-of-type(4) .about-detail-list li .about-detail-flex .about-detail-heading-text {
    font-size: 2rem;
  }
}
#about .about_inner article.about-last-article {
  padding-bottom: 220px;
}
@media screen and (max-width: 540px) {
  #about .about_inner article.about-last-article {
    padding-bottom: 140px;
  }
}

.page-template-page-about #page_title {
  padding-bottom: 12px;
}
@media screen and (max-width: 540px) {
  .page-template-page-about #page_title {
    padding-bottom: 8px;
  }
}
.page-template-page-about #about {
  padding-top: 16px;
}
@media screen and (max-width: 540px) {
  .page-template-page-about #about {
    padding-top: 10px;
  }
}
.page-template-page-about #about .about_inner {
  margin-top: 16px;
}
@media screen and (max-width: 540px) {
  .page-template-page-about #about .about_inner {
    margin-top: 10px;
  }
}
.page-template-page-about footer {
  margin-top: 110px;
}

.page-template-page-service #page_title {
  padding-bottom: 12px;
}
@media screen and (max-width: 540px) {
  .page-template-page-service #page_title {
    padding-bottom: 8px;
  }
}
.page-template-page-service #business .business_inner {
  margin-top: 16px;
}
@media screen and (max-width: 540px) {
  .page-template-page-service #business .business_inner {
    margin-top: 10px;
  }
}

.margin-less-footer footer {
  margin-top: 110px;
}

body:has(.bg-wrap) {
  background: linear-gradient(to bottom, #ebf1f7, #fff 40%);
}

.bg-wrap {
  background: linear-gradient(to bottom, #ebf1f7, #fff);
}

#business .business_inner {
  margin-top: 50px;
  border-radius: 50px 0 0 0;
  background-color: #fff;
  padding: 80px;
  padding-bottom: 160px;
}
@media screen and (max-width: 1200px) {
  #business .business_inner {
    padding: 80px 0;
  }
}
#business .business_inner article {
  width: 86%;
  max-width: 1200px;
  min-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  #business .business_inner article {
    width: 90%;
    min-width: unset;
  }
}
@media screen and (max-width: 840px) {
  #business .business_inner article {
    flex-direction: column;
    justify-content: center;
  }
  #business .business_inner article .pc-only {
    display: none;
  }
  #business .business_inner article .sp-only {
    display: block;
  }
  #business .business_inner article .sp-only div {
    margin: 3rem auto;
    width: 90%;
  }
}
#business .business_inner article:nth-of-type(1) {
  margin-bottom: 114px;
}
@media screen and (max-width: 840px) {
  #business .business_inner article:nth-of-type(1) {
    margin-bottom: 84px;
  }
}
#business .business_inner article:nth-of-type(1) .wrap {
  display: flex;
  justify-content: space-between;
  padding-left: 65px;
}
@media screen and (max-width: 1200px) {
  #business .business_inner article:nth-of-type(1) .wrap {
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
  }
}
#business .business_inner article:nth-of-type(1) .wrap div {
  width: 43%;
}
@media screen and (max-width: 1200px) {
  #business .business_inner article:nth-of-type(1) .wrap div {
    width: 100%;
  }
}
#business .business_inner article:nth-of-type(1) .wrap p {
  font-size: 1.8rem;
  margin-bottom: 70px;
}
@media screen and (max-width: 840px) {
  #business .business_inner article:nth-of-type(1) .wrap p {
    margin-bottom: 24px;
  }
}
#business .business_inner article:nth-of-type(1) .wrap .catch-copy {
  font-size: 2.6rem;
}
#business .business_inner article:nth-of-type(1) .wrap .catch-copy .catch-blue {
  color: #004da0;
}
#business .business_inner article:nth-of-type(1) .wrap .catch-copy span {
  color: #004da0;
}
@media screen and (max-width: 540px) {
  #business .business_inner article:nth-of-type(1) .wrap .catch-copy {
    font-size: 2rem;
  }
}
#business .business_inner article:nth-of-type(1) .wrap figure {
  width: 44%;
}
@media screen and (max-width: 1200px) {
  #business .business_inner article:nth-of-type(1) .wrap figure {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #business .business_inner article:nth-of-type(1) .wrap figure .sp-only {
    width: 100%;
    margin: 0;
  }
}
#business .business_inner article:nth-of-type(1) .wrap figure img:nth-of-type(1) {
  width: 100%;
}
@media screen and (max-width: 840px) {
  #business .business_inner article:nth-of-type(1) .wrap figure img:nth-of-type(1) {
    margin-left: auto;
    margin-right: auto;
  }
}
#business .business_inner article:nth-of-type(1) .wrap figure img:nth-of-type(2) {
  width: 92%;
}
@media screen and (max-width: 840px) {
  #business .business_inner article:nth-of-type(1) .wrap figure img:nth-of-type(2) {
    margin-bottom: 20px;
  }
}
#business .business_inner article.business-detail {
  color: #fff;
  border-radius: 26px;
  display: flex;
  justify-content: space-between;
  margin-top: 84px;
}
#business .business_inner article.business-detail figure {
  flex: 1;
  margin: 0;
  width: 50%;
}
#business .business_inner article.business-detail figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 840px) {
  #business .business_inner article.business-detail figure img {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 840px) {
  #business .business_inner article.business-detail figure {
    width: 100%;
  }
}
#business .business_inner article.business-detail a {
  margin-top: 30px;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}
#business .business_inner article.business-detail .detail-txt-area {
  padding: 56px 70px 36px;
  width: 50%;
}
#business .business_inner article.business-detail .detail-txt-area h3 {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.02em;
}
#business .business_inner article.business-detail .detail-txt-area h3 span {
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
}
#business .business_inner article.business-detail .detail-txt-area h3::after {
  content: "";
  display: block;
  background-color: #fff;
  height: 0.75px;
  width: 100%;
  margin: 30px 0;
}
@media screen and (max-width: 840px) {
  #business .business_inner article.business-detail .detail-txt-area h3::after {
    content: none;
    margin: 0;
  }
}
@media screen and (max-width: 840px) {
  #business .business_inner article.business-detail .detail-txt-area h3 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 840px) {
  #business .business_inner article.business-detail .detail-txt-area {
    width: 100%;
    margin: 3rem auto;
    padding: 0px 20px 0px;
  }
}
#business .business_inner article.business-detail.no01 {
  background-color: #004da0;
}
#business .business_inner article.business-detail.no01 .bg-num {
  background: url(./images/business/business-num-01.webp) no-repeat right 70px top 56px;
  background-size: 22%;
}
@media screen and (max-width: 840px) {
  #business .business_inner article.business-detail.no01 .bg-num {
    background: url(./images/business/business-num-01.webp) no-repeat right 20px top 0px;
    background-size: 15%;
  }
}
#business .business_inner article.business-detail.no02 {
  background-color: #2768af;
  flex-direction: row-reverse;
}
#business .business_inner article.business-detail.no02 .bg-num {
  background: url(./images/business/business-num-02.webp) no-repeat right 70px top 56px;
  background-size: 22%;
}
@media screen and (max-width: 840px) {
  #business .business_inner article.business-detail.no02 .bg-num {
    background-position: right 20px top 0;
    background-size: 15%;
  }
}
#business .business_inner article.business-detail.no02 figure img {
  -o-object-position: right top;
     object-position: right top;
}
@media screen and (max-width: 840px) {
  #business .business_inner article.business-detail.no02 {
    flex-direction: column;
  }
}
#business .business_inner article.business-detail.no03 {
  background-color: #4a80bc;
}
#business .business_inner article.business-detail.no03 .bg-num {
  background: url(./images/business/business-num-03.webp) no-repeat right 70px top 56px;
  background-size: 22%;
}
@media screen and (max-width: 840px) {
  #business .business_inner article.business-detail.no03 .bg-num {
    background-position: right 20px top 0;
    background-size: 15%;
  }
}
#business .business_inner article.business-detail.no04 {
  background-color: #6a98c8;
  flex-direction: row-reverse;
}
#business .business_inner article.business-detail.no04 .bg-num {
  background: url(./images/business/business-num-04.webp) no-repeat right 70px top 56px;
  background-size: 22%;
}
@media screen and (max-width: 840px) {
  #business .business_inner article.business-detail.no04 .bg-num {
    background-position: right 20px top 0;
    background-size: 15%;
  }
}
@media screen and (max-width: 840px) {
  #business .business_inner article.business-detail.no04 figure img {
    -o-object-position: initial;
       object-position: initial;
  }
}
@media screen and (max-width: 840px) {
  #business .business_inner article.business-detail.no04 {
    flex-direction: column;
  }
}
#business .business_inner article.business-detail.no05 {
  background-color: #87acd3;
}
#business .business_inner article.business-detail.no05 .bg-num {
  background: url(./images/business/business-num-05.webp) no-repeat right 70px top 56px;
  background-size: 22%;
}
@media screen and (max-width: 840px) {
  #business .business_inner article.business-detail.no05 .bg-num {
    background-position: right 20px top 0;
    background-size: 15%;
  }
}

.direct_contact {
  border: 5px solid #ac8e4b;
  border-radius: 18px;
  background-color: #fff;
  padding: 30px;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}
.direct_contact > p {
  font-size: 2.3rem;
  color: #ac8e4b;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .direct_contact > p {
    font-size: 2rem;
  }
}
.direct_contact .row {
  display: flex;
  flex-flow: row wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 20px;
}
@media screen and (max-width: 540px) {
  .direct_contact .row {
    gap: 10px;
  }
}
.direct_contact .row .item p:nth-of-type(1) {
  color: #fff;
  font-size: 1.8rem;
  background-color: #ac8e4b;
  border-radius: 50px;
  text-align: center;
}
.direct_contact .row .item p:nth-of-type(2) {
  font-size: 3.4rem;
  color: #ac8e4b;
  padding-left: 40px;
}
@media screen and (max-width: 540px) {
  .direct_contact .row .item p:nth-of-type(2) {
    font-size: 2.8rem;
    margin-top: 8px;
  }
}
.direct_contact .row .item .tel,
.direct_contact .row .item .fax {
  position: relative;
}
@media screen and (min-width: 541px) {
  .direct_contact .row .item .tel,
  .direct_contact .row .item .fax {
    pointer-events: none;
  }
}
.direct_contact .row .item .tel::before,
.direct_contact .row .item .fax::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 33px;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -61%);
}
.direct_contact .row .item .tel::before {
  background-image: url(images/airport-stadium/tel.webp);
}
.direct_contact .row .item .fax::before {
  background-image: url(images/airport-stadium/fax.webp);
}

.fix_btn {
  transition: opacity 0.3s, visibility 0.3s;
}

.fix_btn.is_hidden {
  opacity: 0;
  visibility: hidden;
}

#initiatives {
  padding: 100px;
  padding-top: 0;
  background-color: #fff;
}
@media screen and (max-width: 840px) {
  #initiatives {
    padding: 40px;
  }
}
@media screen and (max-width: 540px) {
  #initiatives {
    padding: 25px 20px;
  }
}
#initiatives h4 {
  margin: 20px 0;
}
#initiatives h3 {
  font-size: 3.5rem;
  position: relative;
  padding-left: 40px;
  text-align: left;
}
#initiatives h3 span {
  font-size: 2.6rem;
  color: #ac8e4b;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 10px;
  white-space: nowrap;
}
@media screen and (max-width: 540px) {
  #initiatives h3 span {
    display: block;
    font-size: 1.6rem;
    margin-left: 0;
    margin-top: 8px;
  }
}
#initiatives h3::before {
  content: "";
  background-color: #ac8e4b;
  width: 14px;
  aspect-ratio: 1/1;
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 540px) {
  #initiatives h3 {
    font-size: 2rem;
    line-height: 1.35;
    word-break: keep-all;
    overflow-wrap: normal;
  }
  #initiatives h3::before {
    top: 0.68em;
  }
}
#initiatives .wh_inner {
  background-color: #f7f7f7;
  max-width: 100%;
  width: 100%;
  border-radius: 12px;
  padding: 40px 0;
}
#initiatives .wh_inner .inner {
  width: 90%;
}
#initiatives .lead {
  margin: 30px 0;
}/*# sourceMappingURL=sub.css.map */