@charset "UTF-8";
:root {
  --black: #000000;
  --gray: #303030;
  --white: #FFFFFF;
  --font-main: "Noto Sans JP", sans-serif;
}

html {
  font-family: var(--font-main);
  font-weight: 500;
  font-style: normal;
  line-height: 1.45;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%; /* iOS 8+ */
  scroll-behavior: smooth;
}
@media screen and (width <= 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}
@media screen and (width > 767px), print {
  html {
    font-size: 10px;
  }
}

body {
  color: var(--black);
  letter-spacing: 0.03em;
  word-break: break-word;
}
@media screen and (width <= 767px) {
  body {
    font-size: 1.4rem;
  }
}
@media screen and (width > 767px), print {
  body {
    font-size: 1.6rem;
  }
}

main {
  min-height: calc(100dvh - 11rem);
  background-color: var(--gray);
  color: var(--white);
}
@media screen and (width <= 767px) {
  main {
    padding-block: 6rem 12rem;
  }
}
@media screen and (width > 767px), print {
  main {
    padding-block: 10rem 22rem;
  }
}

.container {
  width: 100%;
  max-width: 126.4rem;
  margin-inline: auto;
}
@media screen and (width <= 767px) {
  .container {
    padding-inline: 1.6rem;
  }
}
@media screen and (width > 767px), print {
  .container {
    padding-inline: 3.2rem;
  }
}

@media screen and (width > 767px), print {
  br.-sp {
    display: none;
  }
}
@media screen and (width <= 767px) {
  br.-pc {
    display: none;
  }
}

p:not(:first-child) {
  margin-top: 1em;
}

/* header */
#header {
  width: 100%;
  background-color: var(--black);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  -webkit-box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}

.header_inner {
  max-width: 126.4rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 767px) {
  .header_inner {
    height: 6rem;
    padding-left: 1.5rem;
  }
}
@media screen and (width > 767px), print {
  .header_inner {
    height: 10rem;
    padding: 1rem 3.2rem;
  }
}
@media screen and (width <= 767px) {
  .header_logo {
    width: 20rem;
  }
}
@media screen and (767px < width <= 1200px) {
  .header_logo {
    width: 24vw;
  }
}
@media screen and (width > 1200px), print {
  .header_logo {
    width: 29rem;
  }
}
.header_logo img {
  width: 100%;
}
@media screen and (width <= 767px) {
  .header_nav {
    display: none;
    width: 100%;
    background-color: var(--white);
    position: absolute;
    top: 6rem;
    left: 0;
    right: 0;
    -webkit-box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
            box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
  }
}
.header_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width <= 767px) {
  .header_nav_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    padding: 4.4rem 3rem;
  }
}
@media screen and (767px < width <= 1200px) {
  .header_nav_list {
    gap: 3rem;
  }
}
@media screen and (width > 1200px), print {
  .header_nav_list {
    gap: 5rem;
  }
}
.header_nav_list > li {
  font-weight: 600;
  line-height: 1.45;
}
@media screen and (width <= 767px) {
  .header_nav_list > li {
    color: var(--black);
    font-size: 1.6rem;
  }
}
@media screen and (767px < width <= 1200px) {
  .header_nav_list > li {
    color: var(--white);
    font-size: 1.8rem;
  }
}
@media screen and (width > 1200px), print {
  .header_nav_list > li {
    color: var(--white);
    font-size: 2rem;
  }
}
.header_nav_list > li .-en {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (767px < width <= 1200px) {
  .header_nav_list > li .-en {
    padding-inline: 1rem;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
}
@media screen and (width > 1200px), print {
  .header_nav_list > li .-en {
    padding-inline: 1rem;
    -webkit-transform: translateY(1.2rem);
            transform: translateY(1.2rem);
  }
}
.header_nav_list > li .-ja {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (width <= 767px) {
  .header_nav_list > li .-ja {
    display: none;
  }
}
@media screen and (width <= 767px) {
  .header_nav_list > li a {
    display: block;
  }
}
@media screen and (width > 767px), print {
  .header_nav_list > li a {
    height: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header_nav_list > li a:hover .-en {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .header_nav_list > li a:hover .-ja {
    opacity: 1;
  }
}

@media screen and (width <= 767px) {
  #header_trigger {
    display: block;
    width: 6rem;
    height: 6rem;
    background-color: var(--white);
    position: relative;
  }
  #header_trigger::before, #header_trigger::after {
    content: "";
    display: block;
    width: 2rem;
    height: 0.2rem;
    background-color: var(--black);
    position: absolute;
    left: calc(50% - 1rem);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  #header_trigger::before {
    top: calc(50% - 0.7rem);
  }
  #header_trigger::after {
    top: calc(50% + 0.55rem);
  }
  #header_trigger[data-sp-open=true]::before {
    top: 50%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #header_trigger[data-sp-open=true]::after {
    top: 50%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  #header_trigger[data-sp-open=true] .bar {
    opacity: 0;
    left: 100%;
  }
}
@media screen and (width > 767px), print {
  #header_trigger {
    display: none;
  }
}
#header_trigger .bar {
  display: block;
  width: 2rem;
  height: 0.2rem;
  background-color: var(--black);
  position: absolute;
  top: 50%;
  left: calc(50% - 1rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.3s, left 0.3s;
  transition: opacity 0.3s, left 0.3s;
}

#footer {
  background-color: var(--black);
  color: var(--white);
}
#footer .footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width <= 767px) {
  #footer .footer_inner {
    padding-block: 4rem 2.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (width > 767px), print {
  #footer .footer_inner {
    padding-block: 2.2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
#footer .footer_info > p {
  margin-top: 0;
}
@media screen and (width <= 767px) {
  #footer .footer_info > p {
    text-align: center;
  }
  #footer .footer_info > p:not(:first-child) {
    margin-top: 1em;
  }
}
#footer .footer_tel_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 1em;
}
#footer .footer_copy {
  margin-top: 0;
}
@media screen and (width <= 767px) {
  #footer .footer_copy {
    font-size: 1.2rem;
  }
}

.toppage .header_inner {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.toppage .header_logo {
  display: none;
}
.toppage main {
  padding-bottom: 0;
  background-color: var(--black);
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (width <= 767px) {
  .toppage main {
    height: 100dvh;
  }
}
.toppage main h1 {
  text-align: center;
  padding-inline: 3rem;
}
.toppage main h1 img {
  width: 100%;
}
.toppage main .mask-bg {
  width: max(67.7rem, 46.94vw);
  max-width: 100%;
  opacity: 0;
  display: inline-block;
  overflow: hidden;
  position: relative;
  -webkit-transition: opacity 0ms 450ms;
  transition: opacity 0ms 450ms;
}
.toppage main .mask-bg::after {
  content: "";
  display: block;
  background-color: var(--white);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
}
.toppage main .mask-bg[data-load=true] {
  opacity: 1;
}
.toppage main .mask-bg[data-load=true]::after {
  -webkit-animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.17, 1);
          animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.17, 1);
}

@-webkit-keyframes mask-bg {
  0% {
    -webkit-transform: translate(0, 101%);
            transform: translate(0, 101%);
  }
  40%, 60% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
}

@keyframes mask-bg {
  0% {
    -webkit-transform: translate(0, 101%);
            transform: translate(0, 101%);
  }
  40%, 60% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
}
/* 下層ページ */
.lower_mv {
  padding: 2rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 767px) {
  .lower_mv {
    min-height: 18rem;
    margin-bottom: 3rem;
  }
}
@media screen and (width > 767px), print {
  .lower_mv {
    min-height: 22.5rem;
    margin-bottom: 5rem;
  }
}
.lower_mv h1 {
  text-align: center;
  color: var(--white);
}
.lower_mv h1::before {
  content: attr(data-ttl);
  display: block;
  font-size: 4rem;
  font-weight: 800;
}
.lower_mv h1 .-ja {
  display: block;
  margin-top: 0.2rem;
  font-weight: 700;
}

@media screen and (width <= 767px) {
  section {
    scroll-margin-top: 8rem;
  }
}
@media screen and (width > 767px), print {
  section {
    scroll-margin-top: 14rem;
  }
}
section:not(:first-child) {
  margin-top: 10.6rem;
}

h2 {
  margin-bottom: 3rem;
  font-size: 2.4rem;
  font-weight: 800;
}
h2 + * {
  margin-top: 0 !important;
}

h3 {
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 800;
}
h3 + * {
  margin-top: 0 !important;
}

.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.list a {
  text-decoration: underline;
}
@media screen and (width > 767px), print {
  .list a:hover {
    text-decoration: none;
  }
}
.list.-dotted > li {
  line-height: 1.45;
  position: relative;
}
@media screen and (width <= 767px) {
  .list.-dotted > li {
    padding-left: 1.6rem;
  }
}
@media screen and (width > 767px), print {
  .list.-dotted > li {
    padding-left: 2rem;
  }
}
.list.-dotted > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.list.-note > li {
  padding-left: 2.2rem;
  font-size: 1.4rem;
  position: relative;
}
@media screen and (width <= 767px) {
  .list.-note > li {
    line-height: 1.43;
  }
}
@media screen and (width > 767px), print {
  .list.-note > li {
    line-height: 1.57;
  }
}
.list.-note > li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.list.-num {
  counter-reset: listcnt;
}
.list.-num > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  counter-increment: listcnt;
  line-height: 1.4;
}
.list.-num > li::before {
  content: counter(listcnt) ".";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--ttl-blue);
}
.list.-note--num {
  counter-reset: notecnt;
}
.list.-note--num > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  counter-increment: notecnt;
  font-size: 1.4rem;
  line-height: 1.4;
}
.list.-note--num > li::before {
  content: "※" counter(notecnt);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.def-list {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6rem;
  background-color: var(--white);
  color: var(--black);
}
@media screen and (width <= 767px) {
  .def-list {
    padding: 3rem 2rem 2rem;
  }
}
@media screen and (width > 767px), print {
  .def-list {
    padding: 5rem;
  }
}
.def-list_item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 2rem;
  border-bottom: 0.15rem solid var(--black);
}
@media screen and (width <= 767px) {
  .def-list_item {
    gap: 2rem;
  }
}
@media screen and (width > 767px), print {
  .def-list_item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4rem;
  }
}
.def-list_item dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 700;
}
@media screen and (width <= 767px) {
  .def-list_item dt {
    width: 25%;
  }
}
@media screen and (width > 767px), print {
  .def-list_item dt {
    width: 30%;
    max-width: 26rem;
  }
}
.def-list_item dd {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.def-list_item dd > span {
  display: inline-block;
}
.def-list_item dd > *:first-child {
  margin-top: 0;
}

.anchor-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (width <= 767px) {
  .anchor-list {
    gap: 2rem;
  }
}
@media screen and (width > 767px), print {
  .anchor-list {
    gap: 5.4rem 5%;
  }
}
.anchor-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 6rem;
}
@media screen and (width <= 767px) {
  .anchor-list > li {
    width: 100%;
  }
}
@media screen and (width > 767px), print {
  .anchor-list > li {
    width: 30%;
  }
}
.anchor-list > li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 5.5rem 1rem 2.6rem;
  border-radius: 0.6rem;
  background-color: var(--white);
  color: var(--black);
  position: relative;
}
.anchor-list > li a::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.1rem;
  background-image: url(../images/common/arrow_down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 1.9rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about .map {
  width: 100%;
  margin-top: 7rem;
}
.about .map iframe {
  width: 100%;
}
@media screen and (width <= 767px) {
  .about .map iframe {
    aspect-ratio: 4/3;
    height: auto;
  }
}
@media screen and (width > 767px), print {
  .about .map iframe {
    height: 40rem;
  }
}
.about_safety {
  margin-top: 10.6rem;
}
.about_safety > a {
  display: inline-block;
  margin-left: 1.5em;
  line-height: 1.8;
  text-decoration: underline;
  position: relative;
}
.about_safety > a::before {
  content: "";
  display: block;
  border-top: 0.1rem solid var(--white);
  border-right: 0.1rem solid var(--white);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
}
@media screen and (width <= 767px) {
  .about_safety > a::before {
    width: 0.8rem;
    height: 0.8rem;
    top: 0.9rem;
    left: -2.1rem;
  }
}
@media screen and (width > 767px), print {
  .about_safety > a::before {
    width: 1rem;
    height: 1rem;
    top: 1.1rem;
    left: -2.5rem;
  }
}

.car_img.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width <= 767px) {
  .car_img.column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
@media screen and (width > 767px), print {
  .car_img.column2 {
    gap: 5%;
  }
}
@media screen and (width <= 767px) {
  .car_img.column2 figure {
    width: 100%;
  }
}
@media screen and (width > 767px), print {
  .car_img.column2 figure {
    width: 47.5%;
  }
}
.car_img.column2 figure img {
  width: 100%;
}

@media screen and (width <= 767px) {
  .recruit .container > p,
  .recruit section > p {
    font-size: 1.6rem;
  }
}
@media screen and (width > 767px), print {
  .recruit .container > p,
  .recruit section > p {
    font-size: 2rem;
  }
}
.recruit_message {
  text-align: center;
}

@media screen and (width <= 767px) {
  .rental .container > p {
    font-size: 1.6rem;
  }
}
@media screen and (width > 767px), print {
  .rental .container > p {
    font-size: 2rem;
  }
}
.rental_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (width <= 767px) {
  .rental_list {
    margin-top: 2rem;
    gap: 3rem 1.5rem;
  }
}
@media screen and (width > 767px), print {
  .rental_list {
    margin-top: 4rem;
    gap: 4rem 3.2rem;
  }
}
@media screen and (width <= 767px) {
  .rental_list > li {
    width: calc((100% - 1.5rem) / 2);
  }
}
@media screen and (767px < width <= 1200px) {
  .rental_list > li {
    width: calc((100% - 6.4rem) / 3);
  }
}
@media screen and (width > 1200px), print {
  .rental_list > li {
    width: calc((100% - 9.6rem) / 4);
  }
}
.rental_list > li figure {
  width: 100%;
}
.rental_list > li figure .img {
  width: 100%;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--white);
}
.rental_list > li figure .img img {
  width: 100%;
}
.rental_list > li figure figcaption {
  margin-top: 0.8em;
}
@media screen and (width <= 767px) {
  .rental_list > li figure figcaption {
    font-size: 1.4rem;
  }
}
@media screen and (width > 767px), print {
  .rental_list > li figure figcaption {
    font-size: 2rem;
  }
}