@charset "UTF-8";
:root {
  --t_blue: #175ea9;
  --t_sky: #0393c7;
  --t_green: #4d9441;
  --t_black: #0e0e0e;
  --t_gray: #e3e3e3;
  --t_light_sky: #f1f9fe;
  --t_light_green: #f0fdf4;
  --gradient-primary: linear-gradient(
    90deg,
    var(--t_blue) 0%,
    var(--t_sky) 52%,
    var(--t_green) 100%
  );
  --gradient-shadow: linear-gradient(
    135deg,
    rgba(23, 94, 169, 0.15) 0%,
    rgba(3, 147, 199, 0.1) 52%,
    rgba(77, 148, 65, 0.08) 100%
  );
  --header-height: 90px;
}
@media print, screen and (max-width: 767px) {
  :root {
    --header-height: 70px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
html.is-unscroll {
  overflow: hidden;
}

.wrapper {
  max-width: 100%;
  overflow: hidden;
}

button:focus {
  outline: none;
}

.__en {
  font-family: "Arimo", sans-serif;
  font-style: italic;
  font-weight: 400;
}
.__en.bold {
  font-weight: 700;
}

[data-color=blue] {
  color: var(--t_blue);
}

[data-color=black] {
  color: var(--t_black);
}

.jp_mix_midashi__title {
  font-size: clamp(64px, 3.8vw, 72px);
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.005em;
  margin-bottom: 5px;
}
@media screen and (max-width: 575px) {
  .jp_mix_midashi__title {
    font-size: clamp(56px, 10.43vw, 60px);
  }
}
.jp_mix_midashi__subtitle {
  font-size: 14px;
  position: relative;
  padding-left: 10px;
}
.jp_mix_midashi__subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--t_sky);
}

.jp_btn_primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 30px 25px;
  background-color: var(--t_blue);
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.jp_btn_primary.js-fade-in-up {
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), transform 0.8s cubic-bezier(0.33, 1, 0.68, 1), background-color 0.3s ease;
}
.jp_btn_primary:hover {
  background-color: var(--t_sky);
  color: #fff;
}
.jp_btn_primary:hover .jp_btn_primary__icon {
  transform: translateX(5px);
}
.jp_btn_primary__text {
  line-height: 1;
}
.jp_btn_primary__icon {
  width: 18px;
  height: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
@media print, screen and (max-width: 767px) {
  .jp_btn_primary__icon {
    width: 16px;
  }
}

.js-fade-in,
.js-fade-in-up,
.js-fade-in-down,
.js-fade-in-left,
.js-fade-in-right,
.js-scale-up,
.js-shutter {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.js-fade-in-up {
  transform: translateY(10px);
}
.js-fade-in-up.is-animated {
  opacity: 1;
  transform: translateY(0);
}

.js-fade-in-down {
  transform: translateY(-10px);
}
.js-fade-in-down.is-animated {
  opacity: 1;
  transform: translateY(0);
}

.js-fade-in-left {
  transform: translateX(-10px);
}
.js-fade-in-left.is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-fade-in-right {
  transform: translateX(10px);
}
.js-fade-in-right.is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-fade-in.is-animated {
  opacity: 1;
}

.js-scale-up {
  transform: scale(0.9);
}
.js-scale-up.is-animated {
  opacity: 1;
  transform: scale(1);
}

.js-shutter {
  position: relative;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
  opacity: 1;
  --shutter-bg: var(--gradient-primary);
}
.js-shutter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--shutter-bg);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}
.js-shutter.is-animated::before {
  transform: scaleX(1);
}
.js-shutter.is-animated .js-shutter__text,
.js-shutter.is-animated .js-shutter__content {
  opacity: 1;
  transform: translateY(0);
}
.js-shutter.is-animated .js-shutter__image {
  opacity: 1;
  transform: scale(1);
}
.js-shutter__text {
  position: relative;
  display: inline-block;
  padding: 15px 15px 15px 30px;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: bold;
  color: #fff;
  background: var(--shutter-bg);
  opacity: 0;
  z-index: 2;
  transform: translateY(10px);
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1) 0.9s, transform 0.6s cubic-bezier(0.33, 1, 0.68, 1) 0.9s;
}
@media print, screen and (max-width: 767px) {
  .js-shutter__text {
    padding: 8px 8px 8px 16px;
    font-size: 20px;
  }
}
.js-shutter__content {
  position: relative;
  display: inline-block;
  opacity: 0;
  z-index: 2;
  transform: translateY(10px);
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1) 0.9s, transform 0.6s cubic-bezier(0.33, 1, 0.68, 1) 0.9s;
}
.js-shutter__image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  z-index: 2;
  transform: scale(1.05);
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1) 1s, transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 1s;
}
.js-shutter--image {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
}
.js-shutter--image::before {
  transform-origin: left;
}
.js-shutter--square {
  aspect-ratio: 1/1;
}
.js-shutter--portrait {
  aspect-ratio: 3/4;
}
.js-shutter--landscape {
  aspect-ratio: 16/9;
}
.js-shutter--wide {
  aspect-ratio: 21/9;
}
.js-shutter--from-right::before {
  transform-origin: right;
}
.js-shutter--from-center::before {
  transform-origin: center;
}
.js-shutter--blue {
  --shutter-bg: linear-gradient(135deg, var(--t_blue) 0%, var(--t_sky) 100%);
}
.js-shutter--green {
  --shutter-bg: linear-gradient(135deg, #00a86b 0%, #00c9a7 100%);
}
.js-shutter--orange {
  --shutter-bg: linear-gradient(135deg, #ff6b35 0%, #ff9a56 100%);
}
.js-shutter--purple {
  --shutter-bg: linear-gradient(135deg, #6a4c93 0%, #9d84b7 100%);
}
.js-shutter--red {
  --shutter-bg: linear-gradient(135deg, #e63946 0%, #f77f88 100%);
}
.js-shutter--dark {
  --shutter-bg: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
}
.js-shutter--solid-blue {
  --shutter-bg: #175ea9;
}
.js-shutter--solid-green {
  --shutter-bg: #4d9441;
}
.js-shutter--solid-green2 {
  --shutter-bg: #00a86b;
}
.js-shutter--solid-sky {
  --shutter-bg: #0393c7;
}
.js-shutter--solid-black {
  --shutter-bg: #000;
}
.js-shutter--solid-white {
  --shutter-bg: #fff;
}

.js-delay-1 {
  transition-delay: 0.1s;
}

.js-delay-2 {
  transition-delay: 0.2s;
}

.js-delay-3 {
  transition-delay: 0.3s;
}

.js-delay-4 {
  transition-delay: 0.4s;
}

.js-delay-5 {
  transition-delay: 0.5s;
}

.js-delay-6 {
  transition-delay: 0.6s;
}

.js-delay-7 {
  transition-delay: 0.7s;
}

.js-delay-8 {
  transition-delay: 0.8s;
}

.js-delay-9 {
  transition-delay: 0.9s;
}

.js-delay-10 {
  transition-delay: 1s;
}

.jp_sec_heading {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .jp_sec_heading {
    margin-bottom: 20px;
  }
}
.jp_sec_heading--left {
  text-align: left;
}
.jp_sec_heading--right {
  text-align: right;
}
.jp_sec_heading__title {
  font-size: clamp(20px, 2vw, 32px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0 0 10px 0;
}
@media print, screen and (max-width: 991px) {
  .jp_sec_heading__title {
    font-size: clamp(24px, 3vw, 30px);
  }
}
@media screen and (max-width: 575px) {
  .jp_sec_heading__title {
    font-size: clamp(20px, 4.17vw, 24px);
  }
}
@media print, screen and (max-width: 400px) {
  .jp_sec_heading__title {
    font-size: clamp(19px, 5vw, 20px);
  }
}
.jp_sec_heading__title span.js-shutter {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.jp_sec_heading--left .jp_sec_heading__title span.js-shutter {
  margin: 0;
}
.jp_sec_heading--right .jp_sec_heading__title span.js-shutter {
  margin: 0 0 0 auto;
}
.jp_sec_heading__title .js-shutter__content {
  padding: 8px 16px;
  background-color: var(--t_blue);
  color: #fff;
}
@media print, screen and (max-width: 767px) {
  .jp_sec_heading__title .js-shutter__content {
    padding: 6px 12px;
  }
}
.jp_sec_heading--white-theme .jp_sec_heading__title .js-shutter__content {
  background-color: #fff;
  color: var(--t_blue);
}
.jp_sec_heading--green-theme .jp_sec_heading__title .js-shutter__content {
  background-color: var(--t_green);
  color: #fff;
}
.jp_sec_heading--sky-theme .jp_sec_heading__title .js-shutter__content {
  background-color: var(--t_sky);
  color: #fff;
}
.jp_sec_heading--gray-theme .jp_sec_heading__title .js-shutter__content {
  background-color: var(--t_gray);
  color: var(--t_black);
}
.jp_sec_heading--gradient-text .jp_sec_heading__title .js-shutter__content {
  background-color: #fff;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.jp_sec_heading__subtitle {
  text-align: center;
}
.jp_sec_heading__subtitle .__en {
  font-size: clamp(17px, 1vw, 20px);
  color: var(--t_blue);
  font-weight: 700;
}
.jp_sec_heading--white-theme .jp_sec_heading__subtitle .__en {
  color: #fff;
}
.jp_sec_heading--green-theme .jp_sec_heading__subtitle .__en {
  color: var(--t_green);
}
.jp_sec_heading--sky-theme .jp_sec_heading__subtitle .__en {
  color: #fff;
}
.jp_sec_heading--gray-theme .jp_sec_heading__subtitle .__en {
  color: var(--t_black);
}
.jp_sec_heading--gradient-text .jp_sec_heading__subtitle .__en {
  color: #fff;
}
.jp_sec_heading--mb-large {
  margin-bottom: 60px;
}
@media screen and (max-width: 575px) {
  .jp_sec_heading--mb-large {
    margin-bottom: 30px;
  }
}
.jp_sec_heading--mb-small {
  margin-bottom: 20px;
}
@media screen and (max-width: 575px) {
  .jp_sec_heading--mb-small {
    margin-bottom: 10px;
  }
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  width: 100%;
  height: var(--header-height);
  background: #fff;
  transition: height 0.3s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1), visibility 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transform: translate3d(0, 0, 0);
}
.is-nav-open .c-header {
  pointer-events: initial;
  visibility: visible;
  opacity: 1;
}
@media print, screen and (max-width: 767px) {
  .is-header-hide .c-header {
    pointer-events: initial;
    visibility: visible;
    opacity: 1;
  }
}
.c-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 6rem;
}
@media print, screen and (max-width: 1399px) {
  .c-header__inner {
    padding: 0 2rem;
  }
}
@media print, screen and (max-width: 767px) {
  .c-header__inner {
    padding: 0 1.6rem;
  }
}
@media screen and (max-width: 575px) {
  .c-header__inner {
    padding: 0 0.8rem;
  }
}
.c-header__logo {
  width: -moz-fit-content;
  width: fit-content;
}
.c-header__logo-link {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
}
@media print, screen and (max-width: 767px) {
  .c-header__logo-link {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
}
.c-header__logo-link img {
  height: auto;
  max-height: 50px;
}
@media print, screen and (max-width: 767px) {
  .c-header__logo-link img {
    max-height: 40px;
  }
}

.c-nav-toggle {
  position: relative;
  z-index: 3001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: mix-blend-mode 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media print, screen and (max-width: 767px) {
  .c-nav-toggle {
    width: 50px;
    height: 50px;
  }
}
.is-modal-show .c-nav-toggle {
  display: none;
}
.is-nav-open .c-nav-toggle {
  mix-blend-mode: normal;
}
.c-nav-toggle__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.c-nav-toggle__bars {
  position: relative;
  width: 50px;
  height: 25px;
}
@media print, screen and (max-width: 1199px) {
  .c-nav-toggle__bars {
    width: 40px;
    height: 26px;
  }
}
@media print, screen and (max-width: 767px) {
  .c-nav-toggle__bars {
    height: 20px;
  }
}
.c-nav-toggle__bar {
  position: absolute;
  width: 100%;
  height: 2px;
  overflow: hidden;
  transform-origin: center center;
}
.c-nav-toggle__bar--1 {
  top: 0;
  left: 0;
  transition: top 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s;
}
.is-nav-open .c-nav-toggle__bar--1 {
  top: calc(50% - 1px);
  transition: top 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  transform: rotate(45deg);
}
.c-nav-toggle__bar--2 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s;
}
.is-nav-open .c-nav-toggle__bar--2 {
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s;
}
.c-nav-toggle__bar--3 {
  bottom: 0;
  left: 0;
  transition: bottom 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s;
}
.is-nav-open .c-nav-toggle__bar--3 {
  bottom: calc(50% - 1px);
  transition: bottom 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  transform: rotate(-45deg);
}
.c-nav-toggle__bar-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.c-nav-toggle__bar-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--t_black);
}
.c-nav-toggle__bar-back {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}
.c-nav-toggle__text {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--t_black);
  height: 14px;
}
@media print, screen and (max-width: 767px) {
  .c-nav-toggle__text {
    font-size: 12px;
    height: 12px;
  }
}
.c-nav-toggle__text-menu, .c-nav-toggle__text-close {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  white-space: nowrap;
}
.c-nav-toggle__text-menu {
  opacity: 1;
}
.is-nav-open .c-nav-toggle__text-menu {
  opacity: 0;
}
.c-nav-toggle__text-close {
  opacity: 0;
}
.is-nav-open .c-nav-toggle__text-close {
  opacity: 1;
}

.c-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2000;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}
.is-nav-open .c-nav {
  pointer-events: all;
}
@media print, screen and (max-width: 767px) {
  .c-nav {
    padding-top: var(--header-height);
  }
}
.c-nav__wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
}
@media print, screen and (max-width: 767px) {
  .c-nav__wrapper {
    overflow: auto;
    border-top: solid 1px var(--t_gray);
    -webkit-overflow-scrolling: touch;
  }
}
.c-nav__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0 5vw;
}
@media print, screen and (max-width: 767px) {
  .c-nav__inner {
    justify-content: initial;
    padding: 30px;
  }
}
.c-nav__menu {
  width: 100%;
}
.c-nav__menu-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 60px;
}
@media print, screen and (max-width: 991px) {
  .c-nav__menu-list {
    grid-gap: 0 40px;
  }
}
@media print, screen and (max-width: 767px) {
  .c-nav__menu-list {
    display: block;
  }
}
.c-nav__menu-item {
  position: relative;
  border-bottom: 1px solid var(--t_gray);
}
.c-nav__menu-item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--t_blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) and (pointer: fine) {
  .c-nav__menu-item:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .c-nav__menu-item:hover .c-nav__menu-label-main, .c-nav__menu-item:hover .c-nav__menu-label-sub, .c-nav__menu-item:hover .c-nav__menu-arrow-icon {
    color: var(--t_blue);
  }
}
.c-nav__menu-item.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.c-nav__menu-item.active .c-nav__menu-label-main, .c-nav__menu-item.active .c-nav__menu-label-sub, .c-nav__menu-item.active .c-nav__menu-arrow-icon {
  color: var(--t_blue);
}
@media print, screen and (max-width: 767px) {
  .c-nav__menu-item {
    width: 100%;
    padding: 1.5rem 0;
  }
}
.c-nav__menu-link {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  transition: opacity 0.5s cubic-bezier(0.61, 1, 0.88, 1);
  padding: 2rem 0;
}
@media print, screen and (max-width: 991px) {
  .c-nav__menu-link {
    padding: 1.5rem 0;
  }
}
@media print, screen and (max-width: 767px) {
  .c-nav__menu-link {
    width: 100%;
    padding: 0;
  }
}
.c-nav__menu-label {
  flex: 1;
}
.c-nav__menu-label-main {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.4rem;
  color: var(--t_black);
  transition: color 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
@media print, screen and (max-width: 991px) {
  .c-nav__menu-label-main {
    font-size: clamp(18px, 2.42vw, 24px);
  }
}
.c-nav__menu-label-sub {
  font-size: 2.4rem;
  transition: color 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
@media print, screen and (max-width: 991px) {
  .c-nav__menu-label-sub {
    font-size: clamp(18px, 2.42vw, 24px);
  }
}
.c-nav__menu-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 1em;
}
.c-nav__menu-arrow-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.c-nav__menu-arrow-icon {
  display: block;
  width: 20px;
  height: 14px;
  transition: color 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.c-nav__menu-arrow-icon[data-color=blue] {
  color: var(--t_blue);
}
.c-nav__menu-arrow-icon[data-color=black] {
  color: var(--t_black);
}
@media print, screen and (max-width: 767px) {
  .c-nav__menu-arrow-icon {
    width: 16px;
    height: 12px;
  }
}
.c-nav__bg {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #fff;
  transform: translate3d(0, 0, 0);
}

.c-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1), visibility 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.is-nav-open .c-overlay {
  opacity: 1;
  visibility: visible;
}

@keyframes forward {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes left-in {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@keyframes right-out {
  0% {
    transform: scaleX(1);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.p-fv {
  position: relative;
  padding-top: var(--header-height);
  height: 100vh;
  height: 100svh;
}
@media print, screen and (max-width: 991px) {
  .p-fv {
    height: 85vh;
    height: 85svh;
  }
}
@media print, screen and (max-width: 767px) {
  .p-fv {
    height: 100vh;
    height: 100svh;
  }
}
.p-fv__inner {
  display: flex;
  height: 100%;
}
@media print, screen and (max-width: 767px) {
  .p-fv__inner {
    flex-direction: column;
  }
}
.p-fv__image {
  flex: 0 0 68.3854166667%;
  position: relative;
  overflow: hidden;
}
@media print, screen and (max-width: 1499px) {
  .p-fv__image {
    flex: 0 0 60%;
  }
}
@media print, screen and (max-width: 1199px) {
  .p-fv__image {
    flex: 0 0 57.5%;
  }
}
@media print, screen and (max-width: 991px) {
  .p-fv__image {
    flex: 0 0 70%;
  }
}
@media print, screen and (max-width: 767px) {
  .p-fv__image {
    width: 100%;
  }
}
.p-fv__swiper {
  width: 100%;
  height: 100%;
}
.p-fv__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-fv__catch {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}
@media print, screen and (max-width: 1499px) {
  .p-fv__catch {
    padding: 0;
    padding-left: 60px;
  }
}
@media print, screen and (max-width: 1199px) {
  .p-fv__catch {
    padding-left: 45px;
  }
}
@media print, screen and (max-width: 1080px) {
  .p-fv__catch {
    padding-left: 30px;
  }
}
@media print, screen and (max-width: 991px) {
  .p-fv__catch {
    padding-left: 0;
    margin-left: -45px;
  }
}
@media print, screen and (max-width: 767px) {
  .p-fv__catch {
    padding: 15px 30px;
    margin-left: 0;
    gap: 10px;
  }
}
@media screen and (max-width: 575px) {
  .p-fv__catch {
    padding: 15px;
    gap: 5px;
  }
}
.p-fv__catch-item {
  position: relative;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
}
.p-fv__catch-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1;
}
.p-fv__catch-item--1::before {
  animation: fvShutterOpen 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 0.2s;
}
.p-fv__catch-item--1 .p-fv__catch-text {
  animation-delay: 0.8s;
}
.p-fv__catch-item--2::before {
  animation: fvShutterOpen 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 0.4s;
}
.p-fv__catch-item--2 .p-fv__catch-text {
  animation-delay: 1s;
}
.p-fv__catch-item--3::before {
  animation: fvShutterOpen 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 0.6s;
}
.p-fv__catch-item--3 .p-fv__catch-text {
  animation-delay: 1.2s;
}
.p-fv__catch-text {
  position: relative;
  display: inline-block;
  line-height: 1;
  padding: 15px 15px 15px 30px;
  font-size: clamp(32px, 2vw, 40px);
  font-weight: bold;
  color: #fff;
  background: var(--gradient-primary);
  opacity: 0;
  z-index: 2;
  animation: fvTextFadeIn 0.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@media print, screen and (max-width: 1499px) {
  .p-fv__catch-text {
    font-size: clamp(30px, 2.4vw, 36px);
  }
}
@media print, screen and (max-width: 991px) {
  .p-fv__catch-text {
    font-size: clamp(20px, 2.5vw, 30px);
  }
}
@media print, screen and (max-width: 767px) {
  .p-fv__catch-text {
    padding: 8px 8px 8px 16px;
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .p-fv__catch-text {
    padding: 6px 6px 6px 12px;
  }
}
.p-fv__company {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  opacity: 0;
  animation: fvTextFadeIn 0.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 1.4s;
}
@media print, screen and (max-width: 991px) {
  .p-fv__company {
    font-size: clamp(16px, 1.8vw, 18px);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
  }
}
@media print, screen and (max-width: 767px) {
  .p-fv__company {
    margin-top: 8px;
  }
}
@media screen and (max-width: 575px) {
  .p-fv__company {
    margin-top: 4px;
  }
}
.p-fv__bg-text {
  position: absolute;
  bottom: -0.75em;
  left: 50%;
  transform: translateX(-50%) scaleX(1.02);
  font-size: clamp(60px, 6.5vw, 124px);
  color: #e3e3e3;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  animation: fvBgTextFadeInPC 0.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 1.4s;
}
@media print, screen and (max-width: 991px) {
  .p-fv__bg-text {
    font-size: clamp(40px, 6.5vw, 62px);
    bottom: -45px;
  }
}
@media print, screen and (max-width: 767px) {
  .p-fv__bg-text {
    transform: none;
    bottom: 20%;
    left: -20px;
    font-size: clamp(49px, 14.86vw, 114px);
    line-height: 1;
    animation: fvBgTextFadeInSP 0.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-delay: 1.4s;
  }
}
@media screen and (max-width: 575px) {
  .p-fv__bg-text {
    transform: none;
    bottom: 22.5%;
  }
}
@keyframes fvShutterOpen {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes fvTextFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fvBgTextFadeInPC {
  0% {
    opacity: 0;
    transform: translateX(-50%) scaleX(1.02) translateY(20px);
  }
  100% {
    opacity: 0.3;
    transform: translateX(-50%) scaleX(1.02) translateY(0);
  }
}
@keyframes fvBgTextFadeInSP {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
}

.t_about {
  position: relative;
  padding: 125px 0 120px;
  background: var(--gradient-primary);
  overflow: hidden;
}
@media print, screen and (max-width: 991px) {
  .t_about {
    padding: 100px 0;
  }
}
@media print, screen and (max-width: 767px) {
  .t_about {
    padding: 80px 0;
  }
}
.t_about__title {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 35px;
  line-height: 1.6;
}
@media print, screen and (max-width: 767px) {
  .t_about__title {
    font-size: clamp(21px, 4vw, 30px);
    margin-bottom: 20px;
  }
}
.t_about__text {
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 2;
}
@media print, screen and (max-width: 767px) {
  .t_about__text {
    text-align: justify;
  }
}

.t_service {
  padding: 90px 0;
}
@media print, screen and (max-width: 991px) {
  .t_service {
    padding: 60px 0;
  }
}
@media screen and (max-width: 575px) {
  .t_service {
    padding: 80px 0 0;
  }
}
.t_service__content {
  position: relative;
  background-color: var(--t_light_sky);
  padding-top: 90px;
  padding-bottom: 90px;
  padding-left: 120px;
  margin-left: 120px;
}
@media print, screen and (max-width: 1399px) {
  .t_service__content {
    padding-left: 90px;
    margin-left: 90px;
  }
}
@media print, screen and (max-width: 1199px) {
  .t_service__content {
    padding-left: 60px;
    margin-left: 60px;
  }
}
@media print, screen and (max-width: 991px) {
  .t_service__content {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 40px;
    margin-left: 40px;
  }
}
@media print, screen and (max-width: 767px) {
  .t_service__content {
    padding: 0;
    padding: 60px 15px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 575px) {
  .t_service__content {
    padding: 40px 15px;
  }
}
.t_service__text {
  max-width: 32.25vw;
  margin: 60px 0;
  line-height: 1.8;
}
@media print, screen and (max-width: 1399px) {
  .t_service__text {
    margin: 40px 0;
  }
}
@media screen and (max-width: 575px) {
  .t_service__text {
    margin: 30px 0;
  }
}
@media print, screen and (max-width: 767px) {
  .t_service__text {
    max-width: 100%;
  }
}
.t_service__text p {
  margin-bottom: 0;
}
@media print, screen and (max-width: 1399px) {
  .t_service__text p {
    margin-bottom: 1em;
  }
  .t_service__text p:last-child {
    margin-bottom: 0;
  }
}
.t_service__image {
  position: absolute;
  top: 90px;
  right: 0;
  width: 100%;
  max-width: clamp(615px, 47.25vw, 945px);
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 12px 0 0 12px;
}
@media print, screen and (max-width: 1399px) {
  .t_service__image {
    max-width: clamp(580px, 43vw, 615px);
    aspect-ratio: 1/1;
  }
}
@media print, screen and (max-width: 1399px) {
  .t_service__image {
    max-width: clamp(500px, 51vw, 580px);
  }
}
@media print, screen and (max-width: 991px) {
  .t_service__image {
    top: 60px;
    max-width: clamp(400px, 50.45vw, 500px);
  }
}
@media print, screen and (max-width: 767px) {
  .t_service__image {
    display: none;
  }
}
.t_service__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.t_service__image-sp {
  display: none;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 40px;
}
@media print, screen and (max-width: 767px) {
  .t_service__image-sp {
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .t_service__image-sp {
    margin-top: 30px;
  }
}
.t_service__image-sp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.t_number {
  padding: 120px 0;
}
@media print, screen and (max-width: 767px) {
  .t_number {
    padding: 60px 15px 120px;
  }
}
.t_number__content {
  display: flex;
  align-items: flex-end;
}
@media print, screen and (max-width: 991px) {
  .t_number__content {
    align-items: flex-start;
  }
}
@media print, screen and (max-width: 767px) {
  .t_number__content {
    flex-direction: column;
    gap: 15px;
  }
}
.t_number__image {
  width: 100%;
  max-width: clamp(660px, 36.15vw, 719px);
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 0 8px 8px 0;
}
@media print, screen and (max-width: 1499px) {
  .t_number__image {
    aspect-ratio: 1/1;
    max-width: 478px;
    max-height: 478px;
  }
}
@media print, screen and (max-width: 1199px) {
  .t_number__image {
    max-width: 420px;
    max-height: 420px;
  }
}
@media print, screen and (max-width: 991px) {
  .t_number__image {
    max-width: clamp(350px, 40.36vw, 400px);
    max-height: 400px;
  }
}
@media print, screen and (max-width: 767px) {
  .t_number__image {
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 8px;
  }
}
.t_number__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -o-object-position: left center;
     object-position: left center;
}
.t_number__item {
  flex: 1;
  margin-left: 6.75vw;
  margin-right: 12vw;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--t_gray);
}
@media print, screen and (max-width: 1499px) {
  .t_number__item {
    margin-right: 6.75vw;
  }
}
@media print, screen and (max-width: 1199px) {
  .t_number__item {
    margin-left: 5vw;
    margin-right: 5vw;
  }
}
@media print, screen and (max-width: 991px) {
  .t_number__item {
    margin-left: 4vw;
    margin-right: 4vw;
  }
}
@media print, screen and (max-width: 767px) {
  .t_number__item {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 30px;
  }
}
.t_number__number {
  font-size: clamp(56px, 3vw, 60px);
  line-height: 1;
  margin-bottom: 15px;
}
@media screen and (max-width: 575px) {
  .t_number__number {
    font-size: clamp(48px, 9.73vw, 56px);
  }
}
.t_number__midashi {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 24px;
}
@media print, screen and (max-width: 1199px) {
  .t_number__midashi {
    gap: 12px;
  }
}
@media print, screen and (max-width: 1080px) {
  .t_number__midashi {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media print, screen and (max-width: 767px) {
  .t_number__midashi {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (max-width: 575px) {
  .t_number__midashi {
    flex-direction: column;
    align-items: flex-start;
  }
}
.t_number__midashi .obi_black {
  display: inline-block;
  background-color: var(--t_black);
  color: #fff;
  white-space: nowrap;
  line-height: 1;
  font-size: clamp(20px, 1.2vw, 24px);
  padding: 15px 30px;
}
@media screen and (max-width: 575px) {
  .t_number__midashi .obi_black {
    padding: 15px 20px;
  }
}
.t_number__subtitle {
  padding-left: 70px;
  position: relative;
  line-height: 1.4;
  flex: 1 1 auto;
  max-width: 480px;
  word-break: break-word;
}
@media print, screen and (max-width: 1700px) {
  .t_number__subtitle {
    max-width: 380px;
  }
}
@media print, screen and (max-width: 1599px) {
  .t_number__subtitle {
    max-width: 315px;
  }
}
@media print, screen and (max-width: 1499px) {
  .t_number__subtitle {
    max-width: 480px;
  }
}
@media print, screen and (max-width: 1399px) {
  .t_number__subtitle {
    max-width: 395px;
  }
}
@media print, screen and (max-width: 1299px) {
  .t_number__subtitle {
    max-width: 310px;
  }
}
@media print, screen and (max-width: 1199px) {
  .t_number__subtitle {
    max-width: 290px;
  }
}
@media print, screen and (max-width: 1080px) {
  .t_number__subtitle {
    max-width: 100%;
  }
}
@media print, screen and (max-width: 767px) {
  .t_number__subtitle {
    font-size: 16px;
  }
}
.t_number__subtitle .__en {
  font-size: clamp(16px, 1.5vw, 20px);
  background: var(--gradient-primary);
  background-size: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
@media print, screen and (max-width: 767px) {
  .t_number__subtitle .__en {
    font-size: 16px;
  }
}
.t_number__subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background-color: var(--t_blue);
}
.t_number__text {
  font-size: 16px;
  color: var(--t_black);
  margin-bottom: 30px;
}
.t_number__icon-list {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}
@media print, screen and (max-width: 767px) {
  .t_number__icon-list {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  .t_number__icon-list {
    flex-direction: column;
  }
}
.t_number__icon-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 25px 15px;
  border: 1px solid var(--t_gray);
  border-radius: 8px;
}
@media print, screen and (max-width: 1499px) {
  .t_number__icon-item {
    flex-direction: column;
  }
}
@media print, screen and (max-width: 1199px) {
  .t_number__icon-item {
    padding: 15px;
  }
}
@media screen and (max-width: 575px) {
  .t_number__icon-item {
    flex-direction: row;
  }
}
.t_number__icon-img {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 40px;
}
.t_number__icon-img img {
  width: 100%;
  height: auto;
}
.t_number .c_ad {
  max-width: 30px;
  height: auto;
}
.t_number__icon-text {
  font-size: 14px;
  color: #b3b3b3;
}
@media print, screen and (max-width: 1199px) {
  .t_number__icon-text {
    text-align: center;
  }
}

.t_02_box,
.t_03_box {
  margin-top: 80px;
}
@media screen and (max-width: 575px) {
  .t_02_box,
  .t_03_box {
    margin-top: 60px;
  }
}
.t_02_box .t_number__item,
.t_03_box .t_number__item {
  padding-bottom: 105px;
}
@media print, screen and (max-width: 991px) {
  .t_02_box .t_number__item,
  .t_03_box .t_number__item {
    padding-bottom: 50px;
  }
}
@media print, screen and (max-width: 767px) {
  .t_02_box .t_number__item,
  .t_03_box .t_number__item {
    padding-bottom: 30px;
  }
}
.t_02_box .t_number__text,
.t_03_box .t_number__text {
  margin-bottom: 40px;
}
@media print, screen and (max-width: 767px) {
  .t_02_box .t_number__text,
  .t_03_box .t_number__text {
    margin-bottom: 30px;
  }
}

.t_vehicles {
  background: var(--gradient-primary);
  margin-top: 200px;
}
.t_vehicles__content {
  position: relative;
  background-color: var(--t_light_sky);
  margin-top: -200px;
  padding-top: 90px;
  padding-bottom: 90px;
  padding-left: 120px;
  margin-left: 120px;
}
@media print, screen and (max-width: 1399px) {
  .t_vehicles__content {
    padding-left: 90px;
    margin-left: 90px;
  }
}
@media print, screen and (max-width: 1199px) {
  .t_vehicles__content {
    padding-left: 60px;
    margin-left: 60px;
  }
}
@media print, screen and (max-width: 991px) {
  .t_vehicles__content {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 40px;
    margin-left: 40px;
  }
}
@media print, screen and (max-width: 767px) {
  .t_vehicles__content {
    padding: 0;
    padding: 60px 15px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 575px) {
  .t_vehicles__content {
    padding: 40px 15px;
  }
}
.t_vehicles__text {
  max-width: 32.25vw;
  margin: 60px 0;
  line-height: 1.8;
}
@media print, screen and (max-width: 1399px) {
  .t_vehicles__text {
    margin: 40px 0;
  }
}
@media screen and (max-width: 575px) {
  .t_vehicles__text {
    margin: 30px 0;
  }
}
@media print, screen and (max-width: 767px) {
  .t_vehicles__text {
    max-width: 100%;
  }
}
.t_vehicles__text p {
  margin-bottom: 0;
}
@media print, screen and (max-width: 1399px) {
  .t_vehicles__text p {
    margin-bottom: 1em;
  }
  .t_vehicles__text p:last-child {
    margin-bottom: 0;
  }
}
.t_vehicles__image {
  position: absolute;
  top: 90px;
  right: 0;
  width: 100%;
  max-width: clamp(615px, 47.25vw, 945px);
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 12px 0 0 12px;
}
@media print, screen and (max-width: 1599px) {
  .t_vehicles__image {
    aspect-ratio: 4/3;
  }
}
@media print, screen and (max-width: 1399px) {
  .t_vehicles__image {
    max-width: clamp(580px, 43vw, 615px);
    aspect-ratio: 1/1;
  }
}
@media print, screen and (max-width: 1399px) {
  .t_vehicles__image {
    max-width: clamp(500px, 51vw, 580px);
  }
}
@media print, screen and (max-width: 991px) {
  .t_vehicles__image {
    top: 60px;
    max-width: clamp(400px, 50.45vw, 500px);
  }
}
@media print, screen and (max-width: 767px) {
  .t_vehicles__image {
    display: none;
  }
}
.t_vehicles__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.t_vehicles__image-sp {
  display: none;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 40px;
}
@media print, screen and (max-width: 767px) {
  .t_vehicles__image-sp {
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .t_vehicles__image-sp {
    margin-top: 30px;
  }
}
.t_vehicles__image-sp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.t_vehicles .jp_card_link_wrapper {
  padding-top: 290px;
  padding-bottom: 90px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: stretch;
}
@media print, screen and (max-width: 1199px) {
  .t_vehicles .jp_card_link_wrapper {
    padding-top: clamp(200px, 23vw, 290px);
  }
}
@media print, screen and (max-width: 991px) {
  .t_vehicles .jp_card_link_wrapper {
    padding-top: clamp(125px, 16vw, 200px);
    flex-direction: column;
    gap: 20px;
  }
}
@media print, screen and (max-width: 767px) {
  .t_vehicles .jp_card_link_wrapper {
    padding-top: 90px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 575px) {
  .t_vehicles .jp_card_link_wrapper {
    padding: 80px 15px;
  }
}
.t_vehicles .jp_card_link_wrapper.__single .jp_card_link {
  max-width: 60.5%;
  flex: none;
}
@media print, screen and (max-width: 1199px) {
  .t_vehicles .jp_card_link_wrapper.__single .jp_card_link {
    max-width: 70%;
  }
}
@media print, screen and (max-width: 767px) {
  .t_vehicles .jp_card_link_wrapper.__single .jp_card_link {
    max-width: 100%;
  }
}
.t_vehicles .jp_card_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  max-width: 705px;
  padding: 60px 40px;
  background-color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media print, screen and (max-width: 991px) {
  .t_vehicles .jp_card_link {
    max-width: 100%;
  }
}
@media print, screen and (max-width: 767px) {
  .t_vehicles .jp_card_link {
    padding: 40px 24px;
  }
}
@media print, screen and (max-width: 475px) {
  .t_vehicles .jp_card_link {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
}
.t_vehicles .jp_card_link.js-fade-in-up {
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), transform 0.8s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.3s ease;
}
.t_vehicles .jp_card_link:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.t_vehicles .jp_card_link:hover .jp_card_link__icon {
  transform: scale(1);
}
.t_vehicles .jp_card_link:hover .jp_card_link__icon svg {
  transform: scale(1.15);
}
.t_vehicles .jp_card_link__content {
  flex: 1;
  padding-right: 80px;
}
@media print, screen and (max-width: 1399px) {
  .t_vehicles .jp_card_link__content {
    padding-right: 60px;
  }
}
@media print, screen and (max-width: 1199px) {
  .t_vehicles .jp_card_link__content {
    padding-right: 40px;
  }
}
@media print, screen and (max-width: 767px) {
  .t_vehicles .jp_card_link__content {
    padding-right: 24px;
  }
}
@media print, screen and (max-width: 475px) {
  .t_vehicles .jp_card_link__content {
    padding-right: 0;
  }
}
.t_vehicles .jp_card_link__title {
  font-size: clamp(36px, 4vw, 48px);
  color: var(--t_blue);
  line-height: 1;
  margin-bottom: 8px;
}
.t_vehicles .jp_card_link__subtitle {
  font-size: 16px;
  color: var(--t_black);
  font-weight: bold;
  margin-bottom: 20px;
}
@media print, screen and (max-width: 767px) {
  .t_vehicles .jp_card_link__subtitle {
    margin-bottom: 12px;
  }
}
.t_vehicles .jp_card_link__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--t_black);
  margin-bottom: 0;
  text-align: justify;
}
@media print, screen and (max-width: 767px) {
  .t_vehicles .jp_card_link__text {
    font-size: 13px;
    line-height: 1.7;
  }
}
.t_vehicles .jp_card_link__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--t_blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: scale(0.867);
  transition: transform 0.3s ease;
}
@media print, screen and (max-width: 767px) {
  .t_vehicles .jp_card_link__icon {
    width: 50px;
    height: 50px;
    transform: scale(0.88);
  }
}
.t_vehicles .jp_card_link__icon svg {
  width: 18px;
  height: 12px;
  color: #fff;
  transition: transform 0.3s ease;
}
@media print, screen and (max-width: 767px) {
  .t_vehicles .jp_card_link__icon svg {
    width: 16px;
    height: 11px;
  }
}

.p-footer {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  border-top: 1px solid var(--t_gray);
}
.p-footer__bg-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(1.02);
  font-size: clamp(80px, 6.35vw, 160px);
  color: var(--t_gray);
  opacity: 0.3;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
@media print, screen and (max-width: 1199px) {
  .p-footer__bg-text {
    font-size: clamp(60px, 6.5vw, 79px);
  }
}
@media print, screen and (max-width: 991px) {
  .p-footer__bg-text {
    font-size: clamp(50px, 6.4vw, 79px);
  }
}
@media print, screen and (max-width: 767px) {
  .p-footer__bg-text {
    transform: none;
    bottom: 0;
    left: -20px;
    opacity: 0.2;
    font-size: clamp(57px, 14.5vw, 120px);
    line-height: 1;
  }
}
.p-footer__inner {
  position: relative;
  padding: 90px 120px 60px;
  z-index: 1;
}
@media print, screen and (max-width: 1199px) {
  .p-footer__inner {
    padding: 80px 60px 50px;
  }
}
@media print, screen and (max-width: 991px) {
  .p-footer__inner {
    padding: 60px 40px;
  }
}
@media print, screen and (max-width: 767px) {
  .p-footer__inner {
    padding: 80px 15px 40px;
  }
}
.p-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 60px;
}
@media print, screen and (max-width: 767px) {
  .p-footer__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
  }
}
.p-footer__logo {
  display: block;
  margin-bottom: 20px;
  max-width: 508px;
  width: 100%;
}
@media print, screen and (max-width: 1199px) {
  .p-footer__logo {
    max-width: 420px;
  }
}
@media screen and (max-width: 575px) {
  .p-footer__logo {
    max-width: clamp(320px, 73vw, 420px);
  }
}
.p-footer__logo img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.p-footer__company-info {
  font-size: 14px;
  line-height: 1.8;
  color: var(--t_black);
}
@media screen and (max-width: 575px) {
  .p-footer__company-info {
    font-size: 13px;
  }
}
.p-footer__address {
  display: inline-block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--t_gray);
}
.p-footer__contact {
  line-height: 1.6;
}
@media screen and (max-width: 575px) {
  .p-footer__contact span[data-action=call] {
    color: var(--t_black);
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .p-footer__contact span[data-action=call]:hover {
    color: var(--t_sky);
  }
}
@media print, screen and (max-width: 767px) {
  .p-footer__nav {
    width: 100%;
  }
}
.p-footer__nav ul {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 24px 80px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: start;
}
@media print, screen and (max-width: 991px) {
  .p-footer__nav ul {
    gap: 24px 60px;
  }
}
@media print, screen and (max-width: 767px) {
  .p-footer__nav ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .p-footer__nav ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-footer__nav li {
  line-height: 1;
  white-space: nowrap;
}
@media print, screen and (max-width: 767px) {
  .p-footer__nav li {
    white-space: normal;
    text-align: center;
    border-left: 1px solid var(--t_gray);
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-footer__nav li:nth-child(3n+1) {
    border-left: none;
  }
  .p-footer__nav li:nth-child(-n+3) {
    border-bottom: 1px solid var(--t_gray);
  }
  .p-footer__nav li:nth-child(5) {
    border-right: 1px solid var(--t_gray);
  }
}
@media screen and (max-width: 575px) {
  .p-footer__nav li {
    min-height: 60px;
  }
  .p-footer__nav li:nth-child(-n+3) {
    border-bottom: none;
  }
  .p-footer__nav li:nth-child(3) {
    border-right: none;
  }
  .p-footer__nav li:nth-child(2), .p-footer__nav li:nth-child(3), .p-footer__nav li:nth-child(4), .p-footer__nav li:nth-child(5) {
    border-left: none;
  }
  .p-footer__nav li:nth-child(-n+4) {
    border-bottom: 1px solid var(--t_gray);
  }
  .p-footer__nav li:nth-child(1), .p-footer__nav li:nth-child(3), .p-footer__nav li:nth-child(5) {
    border-right: 1px solid var(--t_gray);
  }
}
.p-footer__nav-link {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--t_black);
  text-decoration: none;
  transition: color 0.3s ease;
}
@media print, screen and (max-width: 767px) {
  .p-footer__nav-link {
    display: block;
    padding: 24px;
    font-size: 15px;
    position: relative;
    width: 100%;
    line-height: 1.4;
  }
  .p-footer__nav-link::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 14.07'%3E%3Cpath d='m20,7.03l-7.03,7.03-1.29-1.29,4.83-4.83H0v-1.83h16.5L11.68,1.29l1.29-1.29,7.03,7.03Z' fill='%230e0e0e'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
  }
}
@media screen and (max-width: 767px) and (max-width: 575px) {
  .p-footer__nav-link::after {
    width: 14px;
    height: 10px;
  }
}
@media print, screen and (max-width: 767px) {
  .p-footer__nav-link:hover::after {
    transform: translateY(-50%) translateX(3px);
  }
}
@media screen and (max-width: 575px) {
  .p-footer__nav-link {
    padding: 20px;
    font-size: 14px;
  }
  .p-footer__nav-link::after {
    right: 12px;
    width: 14px;
    height: 10px;
  }
}
.p-footer__nav-link:hover {
  color: var(--t_sky);
}
.p-footer__copyright p {
  font-size: 14px;
  margin: 0;
}

.p-page-title {
  position: relative;
  width: 100%;
  height: 600px;
  margin-top: var(--header-height);
  overflow: hidden;
}
@media print, screen and (max-width: 991px) {
  .p-page-title {
    height: 500px;
  }
}
@media print, screen and (max-width: 767px) {
  .p-page-title {
    height: 400px;
  }
}
@media screen and (max-width: 575px) {
  .p-page-title {
    height: 350px;
  }
}
.p-page-title__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-page-title__bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-page-title .co_ad {
  -o-object-position: left center;
     object-position: left center;
}
@media print, screen and (max-width: 1699px) {
  .p-page-title .co_ad {
    -o-object-position: -100px center;
       object-position: -100px center;
  }
}
.p-page-title__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.p-page-title__content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}
@media print, screen and (max-width: 767px) {
  .p-page-title__content {
    justify-content: center;
  }
}
.p-page-title__heading {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media print, screen and (max-width: 1499px) {
  .p-page-title__heading {
    padding: 0 60px;
  }
}
@media print, screen and (max-width: 991px) {
  .p-page-title__heading {
    padding: 0 40px;
  }
}
@media print, screen and (max-width: 767px) {
  .p-page-title__heading {
    text-align: center;
    padding: 0 30px;
  }
}
@media screen and (max-width: 575px) {
  .p-page-title__heading {
    padding: 0 15px;
  }
}
.p-page-title__title {
  position: relative;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
  margin-bottom: 10px;
  line-height: 1;
}
@media print, screen and (max-width: 767px) {
  .p-page-title__title {
    margin-bottom: 0;
  }
}
.p-page-title__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}
.p-page-title__title.is-animated::before {
  transform: scaleX(1);
}
.p-page-title__title.is-animated .p-page-title__title-text {
  opacity: 1;
  transform: translateY(0);
}
.p-page-title__title-text {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  font-size: clamp(32px, 4vw, 56px);
  color: #fff;
  background: var(--gradient-primary);
  opacity: 0;
  z-index: 2;
  transform: translateY(10px);
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1) 0.9s, transform 0.6s cubic-bezier(0.33, 1, 0.68, 1) 0.9s;
}
@media print, screen and (max-width: 767px) {
  .p-page-title__title-text {
    padding: 10px 20px;
    font-size: 28px;
  }
}
@media screen and (max-width: 575px) {
  .p-page-title__title-text {
    padding: 8px 16px;
  }
}
.p-page-title__subtitle {
  display: block;
}
.p-page-title__subtitle .__en {
  font-size: clamp(18px, 1.5vw, 20px);
  color: #fff;
  display: inline-block;
  font-weight: 700;
}

.en_sec1 {
  padding-top: 120px;
}
@media screen and (max-width: 575px) {
  .en_sec1 {
    padding-top: 80px;
  }
}
.en_sec1__content {
  position: relative;
  background-color: var(--t_light_green);
  padding-top: 90px;
  padding-bottom: 90px;
  padding-left: 120px;
  margin-left: 120px;
}
@media print, screen and (max-width: 1599px) {
  .en_sec1__content {
    padding-left: 90px;
    margin-left: 90px;
  }
}
@media print, screen and (max-width: 1199px) {
  .en_sec1__content {
    padding-left: 60px;
    margin-left: 60px;
  }
}
@media print, screen and (max-width: 991px) {
  .en_sec1__content {
    padding: 0;
    padding: 60px 30px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 575px) {
  .en_sec1__content {
    padding: 40px 15px;
    margin-left: 15px;
  }
}
.en_sec1__heading {
  margin-bottom: 40px;
}
@media print, screen and (max-width: 991px) {
  .en_sec1__heading {
    margin-bottom: 20px;
  }
}
.en_sec1__title {
  font-size: clamp(20px, 2vw, 32px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0;
}
@media print, screen and (max-width: 991px) {
  .en_sec1__title {
    font-size: clamp(24px, 3vw, 30px);
  }
}
@media screen and (max-width: 575px) {
  .en_sec1__title {
    font-size: clamp(20px, 4.17vw, 24px);
  }
}
.en_sec1__title span.js-shutter {
  display: block;
  margin-bottom: 6px;
  width: -moz-fit-content;
  width: fit-content;
}
@media print, screen and (max-width: 991px) {
  .en_sec1__title span.js-shutter {
    margin-bottom: 8px;
  }
}
.en_sec1__title .js-shutter__content {
  padding: 8px 16px 8px 20px;
  background-color: var(--t_green);
  color: #fff;
}
@media print, screen and (max-width: 767px) {
  .en_sec1__title .js-shutter__content {
    padding: 6px 12px 6px 16px;
  }
}
.en_sec1__text {
  max-width: 32.25vw;
  margin-top: 60px;
  line-height: 1.8;
}
@media print, screen and (max-width: 1399px) {
  .en_sec1__text {
    margin-top: 40px;
  }
}
@media print, screen and (max-width: 991px) {
  .en_sec1__text {
    margin-top: 30px;
  }
}
@media screen and (max-width: 575px) {
  .en_sec1__text {
    margin-top: 20px;
  }
}
@media print, screen and (max-width: 991px) {
  .en_sec1__text {
    max-width: 100%;
  }
}
.en_sec1__text p {
  margin-bottom: 1em;
}
.en_sec1__text p:last-child {
  margin-bottom: 0;
}
.en_sec1__image {
  position: absolute;
  top: 90px;
  right: 0;
  width: 100%;
  max-width: clamp(615px, 47.25vw, 945px);
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 12px 0 0 12px;
}
@media print, screen and (max-width: 1399px) {
  .en_sec1__image {
    max-width: clamp(580px, 43vw, 615px);
    aspect-ratio: 1/1;
  }
}
@media print, screen and (max-width: 1399px) {
  .en_sec1__image {
    max-width: clamp(500px, 51vw, 580px);
  }
}
@media print, screen and (max-width: 991px) {
  .en_sec1__image {
    display: none;
  }
}
.en_sec1__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.en_sec1__image-sp {
  display: none;
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 40px;
}
@media print, screen and (max-width: 991px) {
  .en_sec1__image-sp {
    display: block;
    margin-top: 0;
  }
}
@media screen and (max-width: 575px) {
  .en_sec1__image-sp {
    aspect-ratio: 3/2;
  }
}
.en_sec1__image-sp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.en_sec2 {
  padding-top: 240px;
  padding-bottom: 200px;
}
@media print, screen and (max-width: 991px) {
  .en_sec2 {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 575px) {
  .en_sec2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.en_sec2__heading {
  margin-bottom: 40px;
}
@media screen and (max-width: 575px) {
  .en_sec2__heading {
    margin-bottom: 20px;
  }
}
.en_sec2__title {
  font-size: clamp(20px, 2vw, 32px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media print, screen and (max-width: 991px) {
  .en_sec2__title {
    font-size: clamp(24px, 3vw, 30px);
  }
}
@media screen and (max-width: 575px) {
  .en_sec2__title {
    font-size: clamp(20px, 4.17vw, 24px);
  }
}
.en_sec2__title span.js-shutter {
  display: block;
  margin-bottom: 6px;
  width: -moz-fit-content;
  width: fit-content;
}
@media print, screen and (max-width: 991px) {
  .en_sec2__title span.js-shutter {
    margin-bottom: 8px;
  }
}
.en_sec2__title .js-shutter__content {
  padding: 8px 16px 8px 20px;
  background-color: var(--t_green);
  color: #fff;
}
@media print, screen and (max-width: 767px) {
  .en_sec2__title .js-shutter__content {
    padding: 6px 12px 6px 16px;
  }
}
.en_sec2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 40px;
  align-items: stretch;
}
@media print, screen and (max-width: 991px) {
  .en_sec2__grid {
    gap: 15px;
  }
}
@media print, screen and (max-width: 767px) {
  .en_sec2__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .en_sec2__grid {
    grid-template-columns: 1fr;
  }
}
.en_sec2__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--t_light_green);
  padding: 40px 30px;
  height: 100%;
}
@media print, screen and (max-width: 991px) {
  .en_sec2__card {
    padding: 30px 15px;
  }
}
.en_sec2__icon-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  position: relative;
}
.en_sec2__icon-wrapper::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gradient-shadow);
  z-index: -1;
  filter: blur(8px);
}
@media print, screen and (max-width: 991px) {
  .en_sec2__icon-wrapper {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .en_sec2__icon-wrapper {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
  }
}
.en_sec2__icon {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 575px) {
  .en_sec2__icon {
    width: 50px;
    height: 50px;
  }
}
.en_sec2__card-title {
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: bold;
  color: var(--t_green);
  margin: 0 0 12px;
  line-height: 1.4;
}
@media print, screen and (max-width: 767px) {
  .en_sec2__card-title {
    margin-bottom: 10px;
  }
}
.en_sec2__card-text {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: var(--t_black);
  margin: 0;
}
@media print, screen and (max-width: 991px) {
  .en_sec2__card-text {
    text-align: justify;
  }
}

.re_sec1 {
  padding-top: 120px;
}
@media screen and (max-width: 575px) {
  .re_sec1 {
    padding-top: 80px;
  }
}
.re_sec1__content {
  position: relative;
  background-color: var(--t_light_sky);
  padding-top: 90px;
  padding-bottom: 90px;
  padding-left: 120px;
  margin-left: 120px;
}
@media print, screen and (max-width: 1599px) {
  .re_sec1__content {
    padding-left: 90px;
    margin-left: 90px;
  }
}
@media print, screen and (max-width: 1199px) {
  .re_sec1__content {
    padding-left: 60px;
    margin-left: 60px;
  }
}
@media print, screen and (max-width: 991px) {
  .re_sec1__content {
    padding: 0;
    padding: 60px 30px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 575px) {
  .re_sec1__content {
    padding: 40px 15px;
    margin-left: 15px;
  }
}
.re_sec1__heading {
  margin-bottom: 40px;
}
@media print, screen and (max-width: 991px) {
  .re_sec1__heading {
    margin-bottom: 20px;
  }
}
.re_sec1__title {
  font-size: clamp(20px, 2vw, 32px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0;
}
@media print, screen and (max-width: 991px) {
  .re_sec1__title {
    font-size: clamp(24px, 3vw, 30px);
  }
}
@media screen and (max-width: 575px) {
  .re_sec1__title {
    font-size: clamp(20px, 4.17vw, 24px);
  }
}
@media print, screen and (max-width: 400px) {
  .re_sec1__title {
    font-size: clamp(19px, 5vw, 20px);
  }
}
.re_sec1__title span.js-shutter {
  display: block;
  margin-bottom: 6px;
  width: -moz-fit-content;
  width: fit-content;
}
@media print, screen and (max-width: 991px) {
  .re_sec1__title span.js-shutter {
    margin-bottom: 8px;
  }
}
.re_sec1__title .js-shutter__content {
  padding: 8px 16px 8px 20px;
  background-color: var(--t_blue);
  color: #fff;
}
@media print, screen and (max-width: 767px) {
  .re_sec1__title .js-shutter__content {
    padding: 6px 12px 6px 16px;
  }
}
@media print, screen and (max-width: 400px) {
  .re_sec1__title .js-shutter__content {
    padding: 6px 6px 6px 16px;
  }
}
.re_sec1__text {
  max-width: 32.25vw;
  margin-top: 60px;
  line-height: 1.8;
}
@media print, screen and (max-width: 1399px) {
  .re_sec1__text {
    margin-top: 40px;
  }
}
@media print, screen and (max-width: 991px) {
  .re_sec1__text {
    margin-top: 30px;
  }
}
@media screen and (max-width: 575px) {
  .re_sec1__text {
    margin-top: 20px;
  }
}
@media print, screen and (max-width: 991px) {
  .re_sec1__text {
    max-width: 100%;
  }
}
.re_sec1__text p {
  margin-bottom: 1em;
}
.re_sec1__text p:last-child {
  margin-bottom: 0;
}
.re_sec1__image {
  position: absolute;
  top: 90px;
  right: 0;
  width: 100%;
  max-width: clamp(615px, 47.25vw, 945px);
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 12px 0 0 12px;
}
@media print, screen and (max-width: 1399px) {
  .re_sec1__image {
    max-width: clamp(580px, 43vw, 615px);
    aspect-ratio: 1/1;
  }
}
@media print, screen and (max-width: 1399px) {
  .re_sec1__image {
    max-width: clamp(500px, 51vw, 580px);
  }
}
@media print, screen and (max-width: 991px) {
  .re_sec1__image {
    display: none;
  }
}
.re_sec1__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.re_sec1__image-sp {
  display: none;
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 40px;
}
@media print, screen and (max-width: 991px) {
  .re_sec1__image-sp {
    display: block;
    margin-top: 0;
  }
}
@media screen and (max-width: 575px) {
  .re_sec1__image-sp {
    aspect-ratio: 3/2;
  }
}
.re_sec1__image-sp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.re_sec2 {
  padding-top: 240px;
}
@media print, screen and (max-width: 991px) {
  .re_sec2 {
    padding-top: 120px;
  }
}
@media screen and (max-width: 575px) {
  .re_sec2 {
    padding-top: 80px;
  }
}
.re_sec2__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
@media print, screen and (max-width: 1199px) {
  .re_sec2__features {
    gap: 20px;
  }
}
@media print, screen and (max-width: 991px) {
  .re_sec2__features {
    justify-content: flex-start;
  }
}
@media print, screen and (max-width: 767px) {
  .re_sec2__features {
    gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  .re_sec2__features {
    flex-direction: column;
  }
}
.re_sec2__features .re_sec2__card {
  flex: 0 0 calc((100% - 60px) / 3);
}
@media print, screen and (max-width: 991px) {
  .re_sec2__features .re_sec2__card {
    flex: 0 0 calc((100% - 25px) / 2);
  }
}
@media print, screen and (max-width: 767px) {
  .re_sec2__features .re_sec2__card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 575px) {
  .re_sec2__features .re_sec2__card {
    flex: 0 0 100%;
  }
}
.re_sec2__card {
  position: relative;
  padding: 60px 30px 40px;
  background-color: var(--t_light_sky);
  text-align: center;
}
@media print, screen and (max-width: 1199px) {
  .re_sec2__card {
    padding: 60px 20px 40px;
  }
}
@media print, screen and (max-width: 767px) {
  .re_sec2__card {
    padding: 50px 20px 35px;
  }
}
.re_sec2__card::before {
  content: attr(data-number);
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: clamp(60px, 6vw, 80px);
  font-weight: bold;
  font-family: "Arimo", sans-serif;
  font-style: italic;
  color: rgba(23, 94, 169, 0.1);
  line-height: 1;
  z-index: 0;
}
@media print, screen and (max-width: 767px) {
  .re_sec2__card::before {
    font-size: 60px;
    top: 15px;
    left: 15px;
  }
}
.re_sec2__icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 2px 12px rgba(23, 94, 169, 0.15), 0 6px 24px rgba(3, 147, 199, 0.1), 0 10px 40px rgba(77, 148, 65, 0.08);
}
@media print, screen and (max-width: 767px) {
  .re_sec2__icon {
    margin-bottom: 24px;
  }
}
.re_sec2__icon i {
  font-size: 40px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.re_sec2__title {
  position: relative;
  display: inline-block;
  color: var(--t_blue);
  margin: 0 0 12px;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: bold;
  line-height: 1.4;
  z-index: 1;
}
@media print, screen and (max-width: 767px) {
  .re_sec2__title {
    margin: 0 0 10px;
  }
}
.re_sec2__text {
  position: relative;
  font-size: clamp(15px, 0.84vw, 16px);
  line-height: 1.8;
  color: var(--t_black);
  margin: 0;
  text-align: center;
  z-index: 1;
}
@media print, screen and (max-width: 1199px) {
  .re_sec2__text {
    text-align: justify;
  }
}
@media print, screen and (max-width: 767px) {
  .re_sec2__text {
    font-size: 15px;
  }
}
@media screen and (max-width: 575px) {
  .re_sec2__text {
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .re_sec2__text {
    text-align: justify;
  }
}

.re_sec3 {
  padding-top: 200px;
  padding-bottom: 200px;
}
@media print, screen and (max-width: 991px) {
  .re_sec3 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.re_sec3__table {
  margin-top: 40px;
}
@media screen and (max-width: 575px) {
  .re_sec3__table {
    margin-top: 20px;
  }
}
.re_sec3__contact {
  margin-top: 40px;
}
@media print, screen and (max-width: 767px) {
  .re_sec3__contact {
    margin-top: 20px;
  }
}

.re_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--t_gray);
}
.re_table tbody tr {
  border-bottom: 1px solid var(--t_gray);
}
.re_table tbody tr:last-child {
  border-bottom: none;
}
.re_table tbody tr th,
.re_table tbody tr td {
  padding: 30px 20px;
  vertical-align: middle;
}
@media screen and (max-width: 575px) {
  .re_table tbody tr th,
  .re_table tbody tr td {
    padding: 20px 15px;
  }
}
.re_table tbody tr th {
  width: 200px;
  background-color: var(--t_light_sky);
  font-weight: bold;
  color: var(--t_blue);
  font-size: 18px;
}
@media print, screen and (max-width: 767px) {
  .re_table tbody tr th {
    width: 100%;
    display: block;
    vertical-align: top;
  }
}
.re_table tbody tr td {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}
@media print, screen and (max-width: 767px) {
  .re_table tbody tr td {
    width: 100%;
    display: block;
  }
}
.re_table tbody tr td p {
  margin-bottom: 0;
}
.re_table tbody tr td p:not(:last-child) {
  margin-bottom: 8px;
}
.re_table tbody tr td ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0 0;
}
.re_table tbody tr td ul li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 6px;
}
.re_table tbody tr td ul li:last-child {
  margin-bottom: 0;
}
.re_table tbody tr td ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.re_table tbody tr td ul.re_table__list--no-marker li {
  padding-left: 0;
}
.re_table tbody tr td ul.re_table__list--no-marker li::before {
  content: none;
}
.re_table tbody tr .re_table__map-link {
  color: var(--t_blue);
  font-size: 20px;
  transition: color 0.3s ease;
  line-height: 1;
  flex-shrink: 0;
}
.re_table tbody tr .re_table__map-link:hover {
  color: var(--t_sky);
}
.re_table tbody tr .re_table__map-link i {
  display: inline-block;
}

.re_contact_box {
  background: var(--gradient-primary);
  padding: 80px 40px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .re_contact_box {
    padding: 60px 30px;
  }
}
.re_contact_box__content {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media print, screen and (max-width: 991px) {
  .re_contact_box__content {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 575px) {
  .re_contact_box__content {
    margin-top: 20px;
  }
}
.re_contact_box__content > a,
.re_contact_box__content > span[data-action=call] {
  flex: 1;
  display: flex;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s ease;
}
@media print, screen and (max-width: 991px) {
  .re_contact_box__content > a,
  .re_contact_box__content > span[data-action=call] {
    width: 100%;
    justify-content: center;
  }
}
.re_contact_box__left {
  flex: 1;
  text-align: right;
}
@media print, screen and (max-width: 767px) {
  .re_contact_box__left {
    text-align: center;
    width: 100%;
  }
}
.re_contact_box__company {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}
@media print, screen and (max-width: 1199px) {
  .re_contact_box__company {
    font-size: 19px;
  }
}
@media screen and (max-width: 575px) {
  .re_contact_box__company {
    font-size: 16px;
  }
}
.re_contact_box__divider {
  width: 1px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.3);
}
@media print, screen and (max-width: 991px) {
  .re_contact_box__divider {
    display: none;
  }
}
.re_contact_box__right {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}
@media print, screen and (max-width: 991px) {
  .re_contact_box__right {
    width: 100%;
    justify-content: center;
  }
}
.re_contact_box__icon {
  width: 60px;
  height: 60px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media print, screen and (max-width: 1199px) {
  .re_contact_box__icon {
    width: 50px;
    height: 50px;
  }
}
@media print, screen and (max-width: 991px) {
  .re_contact_box__icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 575px) {
  .re_contact_box__icon {
    width: 50px;
    height: 50px;
  }
}
.re_contact_box__icon i {
  font-size: 28px;
  color: var(--t_blue);
}
@media print, screen and (max-width: 1199px) {
  .re_contact_box__icon i {
    font-size: 24px;
  }
}
@media print, screen and (max-width: 991px) {
  .re_contact_box__icon i {
    font-size: 28px;
  }
}
@media screen and (max-width: 575px) {
  .re_contact_box__icon i {
    font-size: 24px;
  }
}
.re_contact_box__tel {
  text-align: left;
}
.re_contact_box__tel-number {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  margin: 0 0 5px 0;
}
@media print, screen and (max-width: 991px) {
  .re_contact_box__tel-number {
    font-size: 38px;
  }
}
@media screen and (max-width: 575px) {
  .re_contact_box__tel-number {
    font-size: 32px;
  }
}
.re_contact_box__tel-time {
  font-size: 14px;
  margin: 0;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .re_contact_box__tel-time {
    font-size: 12px;
  }
}

.co_sec1 {
  padding-top: 120px;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .co_sec1 {
    padding-top: 80px;
  }
}
.co_sec1__inner {
  position: relative;
  display: block;
}
@media print, screen and (max-width: 767px) {
  .co_sec1__inner {
    display: block;
    position: relative;
    padding: 0 15px;
    min-height: auto;
  }
}
.co_sec1__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-left: 0;
  z-index: 3;
  text-align: center;
}
.co_sec1__video-wrap {
  aspect-ratio: 3/1;
  overflow: hidden;
  width: 90%;
  margin-left: 10%;
  position: relative;
  z-index: 1;
}
@media print, screen and (max-width: 1199px) {
  .co_sec1__video-wrap {
    aspect-ratio: 2.5/1;
  }
}
@media print, screen and (max-width: 767px) {
  .co_sec1__video-wrap {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 575px) {
  .co_sec1__video-wrap {
    width: 100%;
    margin-left: 0;
    aspect-ratio: 3/2;
    z-index: 1;
  }
}
.co_sec1__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.co_sec1 .co_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--t_gray);
  margin-top: 80px;
}
@media print, screen and (max-width: 767px) {
  .co_sec1 .co_table {
    margin-top: 60px;
  }
}
.co_sec1 .co_table tbody tr {
  border-bottom: 1px solid var(--t_gray);
}
.co_sec1 .co_table tbody tr:last-child {
  border-bottom: none;
}
.co_sec1 .co_table tbody tr th,
.co_sec1 .co_table tbody tr td {
  padding: 30px 20px;
  vertical-align: middle;
}
@media screen and (max-width: 575px) {
  .co_sec1 .co_table tbody tr th,
  .co_sec1 .co_table tbody tr td {
    padding: 20px 15px;
  }
}
.co_sec1 .co_table tbody tr th {
  width: 200px;
  background-color: var(--t_light_green);
  font-weight: bold;
  color: var(--t_green);
  font-size: 18px;
}
@media print, screen and (max-width: 767px) {
  .co_sec1 .co_table tbody tr th {
    width: 100%;
    display: block;
    vertical-align: top;
  }
}
.co_sec1 .co_table tbody tr td {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}
@media print, screen and (max-width: 767px) {
  .co_sec1 .co_table tbody tr td {
    width: 100%;
    display: block;
  }
}
.co_sec1 .co_table tbody tr td p {
  margin-bottom: 0;
}
.co_sec1 .co_table tbody tr td p:not(:last-child) {
  margin-bottom: 8px;
}
.co_sec1 .co_table tbody tr td ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0 0;
}
.co_sec1 .co_table tbody tr td ul li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 6px;
}
.co_sec1 .co_table tbody tr td ul li:last-child {
  margin-bottom: 0;
}
.co_sec1 .co_table tbody tr td ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.co_sec1 .co_table tbody tr td ul.co_table__list--no-marker li {
  padding-left: 0;
}
.co_sec1 .co_table tbody tr td ul.co_table__list--no-marker li::before {
  content: none;
}
.co_sec1 .co_table tbody tr td ul.co_table__list--compact li {
  font-size: 15px;
  margin-bottom: 4px;
}
.co_sec1 .co_table tbody tr td ul.co_table__list--two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}
@media screen and (max-width: 575px) {
  .co_sec1 .co_table tbody tr td ul.co_table__list--two-column {
    grid-template-columns: 1fr;
  }
}
.co_sec1 .co_table tbody tr td ul.co_table__list--two-column li {
  font-size: 15px;
}
.co_sec1 .co_table__address {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.co_sec1 .co_table__map-link {
  color: var(--t_green);
  font-size: 16px;
  transition: color 0.3s ease;
  line-height: 1;
  flex-shrink: 0;
}
.co_sec1 .co_table__map-link:hover {
  color: var(--t_black);
}
.co_sec1 .co_table__map-link i {
  display: inline-block;
}
.co_sec1 .co_table__section-title {
  font-weight: bold;
  color: var(--t_green);
  margin: 16px 0 8px 0;
  font-size: 16px;
}
.co_sec1 .co_table__section-title:first-child {
  margin-top: 0;
}
.co_sec1 .co_table__external-link {
  display: inline-flex;
  align-items: center;
  color: var(--t_green);
  text-decoration: none;
  transition: color 0.3s ease;
}
.co_sec1 .co_table__external-link:hover {
  color: var(--t_black);
}
.co_sec1 .co_table__note {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
  font-style: italic;
}
.co_sec1 .co_table__list--prefecture {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.co_sec1 .co_table__list--prefecture li {
  padding-left: 0;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
}
.co_sec1 .co_table__list--prefecture li:last-child {
  margin-bottom: 0;
}
.co_sec1 .co_table__list--prefecture li::before {
  content: none !important;
}
.co_sec1 .co_table__prefecture {
  font-weight: bold;
  color: var(--t_green);
  font-size: 15px;
  display: block;
}
.co_sec1 .co_table__cities {
  display: block;
  padding-left: 1em;
  line-height: 1.8;
  color: var(--t_black);
}

.co_sec2 {
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 100px;
  background-color: var(--t_light_green);
  background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  overflow: hidden;
}
@media print, screen and (max-width: 767px) {
  .co_sec2 {
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: 80px;
    background-size: 15px 15px;
  }
}

.p-co-history {
  padding-top: 40px;
}
@media screen and (max-width: 575px) {
  .p-co-history {
    padding-top: 20px;
  }
}
.p-co-history__item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 50px;
}
@media print, screen and (max-width: 767px) {
  .p-co-history__item {
    padding-left: 30px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .p-co-history__item {
    padding-left: 25px;
    padding-bottom: 35px;
  }
}
.p-co-history__item::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 12px;
  bottom: -10px;
  width: 2px;
  background: var(--t_green);
}
@media print, screen and (max-width: 767px) {
  .p-co-history__item::before {
    left: 8px;
  }
}
@media screen and (max-width: 575px) {
  .p-co-history__item::before {
    left: 7px;
    width: 1.5px;
  }
}
.p-co-history__item:last-child {
  padding-bottom: 0;
}
.p-co-history__item:last-child::before {
  bottom: auto;
  height: 100%;
}
.p-co-history__date {
  font-size: 18px;
  font-weight: 700;
  color: var(--t_green);
  margin-bottom: 12px;
  position: relative;
  line-height: 1.4;
}
@media print, screen and (max-width: 767px) {
  .p-co-history__date {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 575px) {
  .p-co-history__date {
    font-size: 15px;
    margin-bottom: 8px;
  }
}
.p-co-history__date::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 5px;
  width: 14px;
  height: 14px;
  background-color: var(--t_green);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
@media print, screen and (max-width: 767px) {
  .p-co-history__date::before {
    left: -27px;
    width: 12px;
    height: 12px;
    top: 4px;
  }
}
@media screen and (max-width: 575px) {
  .p-co-history__date::before {
    left: -22px;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    top: 3px;
  }
}
.p-co-history__content {
  background-color: #fff;
  padding: 20px 24px;
  border: 1px solid var(--t_gray);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  line-height: 1.8;
  font-size: 16px;
  color: var(--t_black);
}
@media print, screen and (max-width: 767px) {
  .p-co-history__content {
    padding: 18px 20px;
  }
}
@media screen and (max-width: 575px) {
  .p-co-history__content {
    padding: 16px 18px;
  }
}

.co_sec3 {
  padding-bottom: 120px;
  background-color: #fff;
}
@media print, screen and (max-width: 767px) {
  .co_sec3 {
    padding-bottom: 80px;
  }
}
.co_sec3__heading {
  text-align: center;
  margin-bottom: 40px;
}
@media print, screen and (max-width: 767px) {
  .co_sec3__heading {
    margin-bottom: 40px;
  }
}
.co_sec3__map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 30%;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
@media print, screen and (max-width: 1399px) {
  .co_sec3__map-wrapper {
    padding-bottom: 50%;
  }
}
@media print, screen and (max-width: 991px) {
  .co_sec3__map-wrapper {
    padding-bottom: 75%;
  }
}
@media print, screen and (max-width: 767px) {
  .co_sec3__map-wrapper {
    padding-bottom: 100%;
  }
}
@media screen and (max-width: 575px) {
  .co_sec3__map-wrapper {
    padding-bottom: 125%;
  }
}
.co_sec3__map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.co_sec3__access-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media print, screen and (max-width: 991px) {
  .co_sec3__access-info {
    gap: 30px;
    margin-bottom: 30px;
  }
}
.co_sec3__access-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--t_black);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media print, screen and (max-width: 767px) {
  .co_sec3__access-title {
    font-size: 16px;
    gap: 10px;
  }
}
.co_sec3__access-title i {
  font-size: 20px;
  color: var(--t_green);
  flex-shrink: 0;
}
@media print, screen and (max-width: 767px) {
  .co_sec3__access-title i {
    font-size: 18px;
  }
}
.co_sec3__access-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--t_black);
  padding-left: 32px;
}
@media print, screen and (max-width: 767px) {
  .co_sec3__access-text {
    font-size: 14px;
    padding-left: 28px;
  }
}
.co_sec3__map-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.jp_btn_primary--map {
  width: 100%;
  max-width: 360px;
  background-color: var(--t_green);
  gap: 60px;
}
@media print, screen and (max-width: 991px) {
  .jp_btn_primary--map {
    max-width: 320px;
  }
}
.jp_btn_primary--map:hover {
  background-color: #6bb05e;
}
.jp_btn_primary--map .jp_btn_primary__icon {
  width: auto;
  height: auto;
  font-size: 18px;
}
@media print, screen and (max-width: 767px) {
  .jp_btn_primary--map .jp_btn_primary__icon {
    font-size: 16px;
  }
}

.se_sec1 {
  padding-top: 120px;
}
@media screen and (max-width: 575px) {
  .se_sec1 {
    padding-top: 80px;
  }
}
.se_sec1__content {
  position: relative;
  background-color: var(--t_light_green);
  padding-top: 90px;
  padding-bottom: 90px;
  padding-left: 120px;
  margin-left: 120px;
}
@media print, screen and (max-width: 1599px) {
  .se_sec1__content {
    padding-left: 90px;
    margin-left: 90px;
  }
}
@media print, screen and (max-width: 1199px) {
  .se_sec1__content {
    padding-left: 60px;
    margin-left: 60px;
  }
}
@media print, screen and (max-width: 991px) {
  .se_sec1__content {
    padding: 0;
    padding: 60px 30px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 575px) {
  .se_sec1__content {
    padding: 40px 15px;
    margin-left: 15px;
  }
}
.se_sec1__heading {
  margin-bottom: 40px;
}
@media print, screen and (max-width: 991px) {
  .se_sec1__heading {
    margin-bottom: 20px;
  }
}
.se_sec1__title {
  font-size: clamp(20px, 2vw, 32px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0;
}
@media print, screen and (max-width: 991px) {
  .se_sec1__title {
    font-size: clamp(24px, 3vw, 30px);
  }
}
@media screen and (max-width: 575px) {
  .se_sec1__title {
    font-size: clamp(20px, 4.17vw, 24px);
  }
}
.se_sec1__title span.js-shutter {
  display: block;
  margin-bottom: 6px;
  width: -moz-fit-content;
  width: fit-content;
}
@media print, screen and (max-width: 991px) {
  .se_sec1__title span.js-shutter {
    margin-bottom: 8px;
  }
}
.se_sec1__title .js-shutter__content {
  padding: 8px 16px 8px 20px;
  background-color: var(--t_green);
  color: #fff;
}
@media print, screen and (max-width: 767px) {
  .se_sec1__title .js-shutter__content {
    padding: 6px 12px 6px 16px;
  }
}
.se_sec1__text {
  max-width: 32.25vw;
  margin-top: 60px;
  line-height: 1.8;
}
@media print, screen and (max-width: 1399px) {
  .se_sec1__text {
    margin-top: 40px;
  }
}
@media print, screen and (max-width: 991px) {
  .se_sec1__text {
    margin-top: 30px;
  }
}
@media screen and (max-width: 575px) {
  .se_sec1__text {
    margin-top: 20px;
  }
}
@media print, screen and (max-width: 991px) {
  .se_sec1__text {
    max-width: 100%;
  }
}
.se_sec1__text p {
  margin-bottom: 1em;
}
.se_sec1__text p:last-child {
  margin-bottom: 0;
}
.se_sec1__image {
  position: absolute;
  top: 90px;
  right: 0;
  width: 100%;
  max-width: clamp(615px, 47.25vw, 945px);
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 12px 0 0 12px;
}
@media print, screen and (max-width: 1399px) {
  .se_sec1__image {
    max-width: clamp(580px, 43vw, 615px);
    aspect-ratio: 1/1;
  }
}
@media print, screen and (max-width: 1399px) {
  .se_sec1__image {
    max-width: clamp(500px, 51vw, 580px);
  }
}
@media print, screen and (max-width: 991px) {
  .se_sec1__image {
    display: none;
  }
}
.se_sec1__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.se_sec1__image-sp {
  display: none;
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 40px;
}
@media print, screen and (max-width: 991px) {
  .se_sec1__image-sp {
    display: block;
    margin-top: 0;
  }
}
@media screen and (max-width: 575px) {
  .se_sec1__image-sp {
    aspect-ratio: 3/2;
  }
}
.se_sec1__image-sp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  position: relative;
  z-index: 1;
}
@media print, screen and (max-width: 991px) {
  .se_sec1__image-sp img {
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}

.se_sec2 {
  padding-top: 120px;
}
@media print, screen and (max-width: 767px) {
  .se_sec2 {
    padding-top: none;
    padding: 60px 15px 0;
  }
}
.se_sec2__content {
  display: flex;
  align-items: flex-end;
}
@media print, screen and (max-width: 991px) {
  .se_sec2__content {
    align-items: flex-start;
  }
}
@media print, screen and (max-width: 767px) {
  .se_sec2__content {
    flex-direction: column;
    gap: 24px;
  }
}
.se_sec2__image {
  width: 100%;
  max-width: clamp(660px, 36.15vw, 719px);
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 0 8px 8px 0;
}
@media print, screen and (max-width: 1499px) {
  .se_sec2__image {
    aspect-ratio: 1/1;
    max-width: 478px;
    max-height: 478px;
  }
}
@media print, screen and (max-width: 1199px) {
  .se_sec2__image {
    max-width: 420px;
    max-height: 420px;
  }
}
@media print, screen and (max-width: 991px) {
  .se_sec2__image {
    max-width: clamp(350px, 40.36vw, 400px);
    max-height: 400px;
  }
}
@media print, screen and (max-width: 767px) {
  .se_sec2__image {
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 8px;
  }
}
.se_sec2__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -o-object-position: left center;
     object-position: left center;
}
.se_sec2__image .img_ad2 {
  -o-object-position: left center;
     object-position: left center;
}
@media print, screen and (max-width: 1399px) {
  .se_sec2__image .img_ad2 {
    -o-object-position: -130px center;
       object-position: -130px center;
  }
}
@media print, screen and (max-width: 767px) {
  .se_sec2__image .img_ad2 {
    -o-object-position: left center;
       object-position: left center;
  }
}
.se_sec2__image .img_ad3 {
  -o-object-position: left center;
     object-position: left center;
}
.se_sec2__item {
  flex: 1;
  margin-left: 6.75vw;
  margin-right: 12vw;
  padding-bottom: 105px;
  border-bottom: 1px solid var(--t_gray);
}
@media print, screen and (max-width: 1499px) {
  .se_sec2__item {
    margin-right: 6.75vw;
  }
}
@media print, screen and (max-width: 1199px) {
  .se_sec2__item {
    margin-left: 5vw;
    margin-right: 5vw;
    padding-bottom: 50px;
  }
}
@media print, screen and (max-width: 991px) {
  .se_sec2__item {
    margin-left: 4vw;
    margin-right: 4vw;
  }
}
@media print, screen and (max-width: 767px) {
  .se_sec2__item {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 32px;
  }
}
.se_sec2__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
@media print, screen and (max-width: 991px) {
  .se_sec2__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
  }
}
@media print, screen and (max-width: 767px) {
  .se_sec2__header {
    flex-direction: row;
    gap: 12px;
  }
}
@media print, screen and (max-width: 450px) {
  .se_sec2__header {
    flex-direction: column;
    gap: 8px;
  }
}
.se_sec2__number {
  color: var(--t_green);
  font-size: clamp(56px, 3vw, 60px);
  line-height: 1;
  flex-shrink: 0;
}
@media screen and (max-width: 575px) {
  .se_sec2__number {
    font-size: clamp(48px, 9.73vw, 56px);
  }
}
.se_sec2__midashi {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media print, screen and (max-width: 1199px) {
  .se_sec2__midashi {
    gap: 12px;
  }
}
@media print, screen and (max-width: 1080px) {
  .se_sec2__midashi {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media print, screen and (max-width: 767px) {
  .se_sec2__midashi {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (max-width: 575px) {
  .se_sec2__midashi {
    flex-direction: column;
    align-items: flex-start;
  }
}
.se_sec2__midashi .obi_green {
  display: inline-block;
  background-color: var(--t_green);
  color: #fff;
  white-space: nowrap;
  line-height: 1;
  font-size: clamp(20px, 1.2vw, 24px);
  padding: 15px 30px;
}
@media screen and (max-width: 575px) {
  .se_sec2__midashi .obi_green {
    padding: 15px 20px;
  }
}
.se_sec2__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--t_black);
  margin-bottom: 1em;
}
.se_sec2__text:last-child {
  margin-bottom: 0;
}

.se_02_box,
.se_03_box {
  margin-top: 80px;
}
@media screen and (max-width: 575px) {
  .se_02_box,
  .se_03_box {
    margin-top: 60px;
  }
}

.se_sec3 {
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 100px;
  background-color: var(--t_light_green);
  background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  overflow: hidden;
}
@media print, screen and (max-width: 767px) {
  .se_sec3 {
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: 80px;
    background-size: 15px 15px;
  }
}
.se_sec3__content {
  background-color: #fff;
  margin-top: 40px;
  padding: 50px 60px;
  border: 1px solid var(--t_gray);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
@media print, screen and (max-width: 991px) {
  .se_sec3__content {
    margin-top: 20px;
    padding: 40px 50px;
  }
}
@media print, screen and (max-width: 767px) {
  .se_sec3__content {
    padding: 35px 40px;
  }
}
@media screen and (max-width: 575px) {
  .se_sec3__content {
    padding: 30px 20px;
  }
}
.se_sec3__text {
  line-height: 1.75;
  font-size: 16px;
  color: var(--t_black);
  margin-bottom: 50px;
}
@media print, screen and (max-width: 767px) {
  .se_sec3__text {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 575px) {
  .se_sec3__text {
    margin-bottom: 30px;
  }
}
.se_sec3__text p {
  margin-bottom: 0.5em;
  text-align: center;
  line-height: 1.75;
}
.se_sec3__text p:last-child {
  margin-bottom: 0;
}
@media print, screen and (max-width: 1199px) {
  .se_sec3__text p {
    text-align: left;
  }
}
.se_sec3__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media print, screen and (max-width: 767px) {
  .se_sec3__buttons {
    gap: 18px;
  }
}
.se_sec3 .jp_btn_primary--sanpai {
  width: 100%;
  max-width: 400px;
  background-color: var(--t_green);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 25px;
  gap: 60px;
}
@media print, screen and (max-width: 991px) {
  .se_sec3 .jp_btn_primary--sanpai {
    max-width: 360px;
  }
}
@media print, screen and (max-width: 767px) {
  .se_sec3 .jp_btn_primary--sanpai {
    gap: 50px;
  }
}
.se_sec3 .jp_btn_primary--sanpai:hover {
  background-color: #6bb05e;
}
.se_sec3 .jp_btn_primary--sanpai .jp_btn_primary__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.75;
  font-size: 14px;
}
.se_sec3 .jp_btn_primary--sanpai .jp_btn_primary__text-main {
  font-size: 24px;
  font-weight: 600;
}
@media print, screen and (max-width: 767px) {
  .se_sec3 .jp_btn_primary--sanpai .jp_btn_primary__text-main {
    font-size: 20px;
  }
}
.se_sec3 .jp_btn_primary--sanpai .jp_btn_primary__icon {
  width: auto;
  height: auto;
  font-size: 18px;
  color: #fff;
}
@media print, screen and (max-width: 767px) {
  .se_sec3 .jp_btn_primary--sanpai .jp_btn_primary__icon {
    font-size: 16px;
  }
}

.se_sec4 {
  padding-bottom: 120px;
}
@media print, screen and (max-width: 767px) {
  .se_sec4 {
    padding-bottom: 60px;
  }
}
.se_sec4__heading {
  margin-bottom: 60px;
}
@media print, screen and (max-width: 767px) {
  .se_sec4__heading {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  .se_sec4__heading {
    margin-bottom: 40px;
  }
}
.se_sec4__projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 30px;
}
@media print, screen and (max-width: 991px) {
  .se_sec4__projects {
    gap: 20px;
  }
}
@media print, screen and (max-width: 767px) {
  .se_sec4__projects {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.se_sec4__project-item {
  background-color: #fff;
  border: 1px solid var(--t_gray);
  border-left: 3px solid var(--t_green);
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}
@media print, screen and (max-width: 767px) {
  .se_sec4__project-item {
    padding: 20px;
  }
}
.se_sec4__project-city {
  font-size: 20px;
  font-weight: 700;
  color: var(--t_green);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--t_gray);
}
@media print, screen and (max-width: 767px) {
  .se_sec4__project-city {
    font-size: 18px;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 575px) {
  .se_sec4__project-city {
    font-size: 17px;
    margin-bottom: 12px;
  }
}
.se_sec4__project-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.se_sec4__project-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.8;
  color: var(--t_black);
  margin-bottom: 10px;
}
@media print, screen and (max-width: 767px) {
  .se_sec4__project-list li {
    font-size: 14px;
  }
}
.se_sec4__project-list li:last-child {
  margin-bottom: 0;
}
.se_sec4__project-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background-color: var(--t_green);
  border-radius: 50%;
  border-radius: 50%;
}

.ve_sec1 {
  padding-top: 120px;
}
@media screen and (max-width: 575px) {
  .ve_sec1 {
    padding-top: 80px;
  }
}
.ve_sec1__content {
  padding: 80px 60px;
  text-align: center;
  background: linear-gradient(rgba(241, 249, 254, 0.9), rgba(241, 249, 254, 0.9)), url("../images/vehicles/vehicles__01.jpg") center/cover no-repeat;
}
@media print, screen and (max-width: 991px) {
  .ve_sec1__content {
    padding: 60px 30px;
    text-align: left;
  }
}
@media screen and (max-width: 575px) {
  .ve_sec1__content {
    padding: 60px 15px;
  }
}
.ve_sec1 .jp_sec_heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 40px;
}
@media print, screen and (max-width: 991px) {
  .ve_sec1 .jp_sec_heading {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  .ve_sec1 .jp_sec_heading {
    margin-bottom: 20px;
  }
}
.ve_sec1__text {
  margin: 0 auto;
  line-height: 1.8;
}
.ve_sec1__text p {
  margin-bottom: 1em;
}
.ve_sec1__text p:last-child {
  margin-bottom: 0;
}

.ve_sec2 {
  padding-top: 200px;
  padding-bottom: 120px;
}
@media screen and (max-width: 575px) {
  .ve_sec2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.ve_vehicle_item {
  margin-bottom: 80px;
}
@media print, screen and (max-width: 991px) {
  .ve_vehicle_item {
    margin-bottom: 60px;
  }
}
@media print, screen and (max-width: 767px) {
  .ve_vehicle_item {
    margin-bottom: 30px;
  }
}
.ve_vehicle_item:last-child {
  margin-bottom: 0;
}
.ve_vehicle_item__inner {
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
@media print, screen and (max-width: 767px) {
  .ve_vehicle_item__inner {
    padding: 15px 15px 30px;
  }
}
.ve_vehicle_item__images {
  margin-bottom: 40px;
}
@media screen and (max-width: 575px) {
  .ve_vehicle_item__images {
    margin-bottom: 30px;
  }
}
.ve_vehicle_item__images .col-md-6 {
  margin-bottom: 0;
}
@media print, screen and (max-width: 767px) {
  .ve_vehicle_item__images .col-md-6 {
    margin-bottom: 20px;
  }
  .ve_vehicle_item__images .col-md-6:last-child {
    margin-bottom: 0;
  }
}
.ve_vehicle_item__image-wrapper {
  position: relative;
}
.ve_vehicle_item__image-wrapper .js-shutter--image {
  aspect-ratio: 16/9;
}
.ve_vehicle_item__heading {
  position: relative;
  font-size: clamp(21px, 2vw, 32px);
  font-weight: bold;
  color: var(--t_blue);
  margin-bottom: 20px;
  line-height: 1.4;
  padding-left: 20px;
}
@media screen and (max-width: 575px) {
  .ve_vehicle_item__heading {
    margin-bottom: 15px;
    padding-left: 16px;
  }
}
.ve_vehicle_item__heading-line {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
  background: var(--t_blue);
}
@media screen and (max-width: 575px) {
  .ve_vehicle_item__heading-line {
    width: 3px;
  }
}
.ve_vehicle_item__description {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 0.5em;
  padding-left: 20px;
}
.ve_vehicle_item__description:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .ve_vehicle_item__description {
    font-size: 15px;
    line-height: 1.8;
    padding-left: 16px;
    margin-bottom: 1em;
  }
}

.mt_ad80 {
  margin-top: 80px;
}
@media screen and (max-width: 575px) {
  .mt_ad80 {
    margin-top: 40px;
  }
}

@media print {
  @page {
    size: A4;
    margin: 15mm;
  }
  .container,
  .container-fluid,
  .row {
    width: 100% !important;
  }
  .c-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 3000;
    width: 100%;
    height: var(--header-height);
    background: #fff;
    transition: none;
    transform: none;
  }
  section + section.new-none:not(:root) {
    page-break-before: avoid;
  }
  .new-page {
    page-break-before: always;
  }
  header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
  .wrapper {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    background-attachment: scroll;
  }
  *::before,
  *::after {
    -webkit-print-color-adjust: exact !important;
    color-adjust: exact !important;
    background-image: block !important;
    box-shadow: none !important;
  }
  .js-fade-in,
  .js-fade-in-up,
  .js-fade-in-down,
  .js-fade-in-left,
  .js-fade-in-right,
  .js-scale-up,
  .js-shutter {
    opacity: 1 !important;
    transition: none !important;
    transform: none !important;
  }
  .p-fv__catch-text {
    opacity: 1 !important;
  }
  .js-shutter__image {
    opacity: 1 !important;
  }
  .js-shutter__content {
    opacity: 1 !important;
  }
}/*# sourceMappingURL=style.css.map */