@charset "utf-8";
/* ============================
common 
==============================*/
:root {
  --primary-beige: #fffae9;
  --primary-black: #342f2f;
  --primary-green: #21562b;
  --primary-orange: #fa7921;
  --primary-pink: #ff8ebe;
  --primary-blue: #3096c9;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "M PLUS 1p";
  color: var(--primary-black);
  line-height: 1.5;
  font-style: normal;
}

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

.section {
  padding: 50px 20px;
  gap: 20px;
  background-color: var(--primary-beige);
  overflow: hidden;
}

a {
  cursor: pointer;
}

/* ======loading page====== */
/* ローディング画面 */
.loading {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  z-index: 999;
  animation: fadeOut 1s 1.5s forwards;
  /* 1.5秒待ってから1秒かけて消える */
}

/* ローディングのフェードアウト */
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* ロゴアニメーション */
.loading__logo {
  opacity: 0;
  animation: logo_fade 1.2s ease forwards;
  width: 175px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (min-width: 769px) {
  .section {
    padding: 80px 70px;
  }
}

/* ふわっと全体表示 */
/* ページ読み込み前は透明に */
body {
  opacity: 0;
  transition: opacity 1s ease-in;
}

/* 読み込み後にクラスが付いてふわっと表示 */
body.loaded {
  opacity: 1;
}

/* ===========================
header
============================ */
.header {
  display: flex;
  width: calc(100% - 10px);
  height: 45px;
  padding: 2px 10px;
  justify-content: space-between;
  align-items: center;
  left: 0px;
  right: 0px;
  top: 5px;
  border-radius: 50px;
  border: 2px solid var(--black, #342f2f);
  background: #fff;
  margin-inline: auto;
  position: fixed;
  z-index: 90;
}

.header__wrapper {
  margin-inline: 0 auto;
}

.logo {
  width: 50px;
  height: auto;
}

.com_name {
  display: none;
}

.phone__img1 {
  width: 23px;
  height: 23px;
}

.phonenumber1 {
  color: var(--primary-black);
  font-size: 1.6rem;
  font-weight: 900;
}

.header__phonenumber {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.opentime1 {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 13px;
}

.header__hamburger {
  width: 37px;
  height: 37px;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .header {
    height: 70px;
    padding: 5px 20px;
  }

  .logo {
    width: 80px;
  }

  .com_name {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
  }

  .header-inner {
    display: flex;
    align-items: center;
  }

  .header__phonenumber {
    gap: 10px;
  }

  .phone__img1 {
    width: 40px;
    height: 40px;
  }

  .phonenumber1 {
    font-size: 3rem;
  }

  .opentime1 {
    font-size: 1.6rem;
    line-height: 20px;
  }

  .header__hamburger {
    width: 55px;
    height: 55px;
  }
}
/* pc 769px */

/* shared hover motion */
.nav-items,
.nav-items__item,
.content,
.service__btn,
.recruitment_btn,
.d_exel,
.d_pdf,
.taxitour_btn,
.modelcourse_btn,
.tourismbus_c_btn,
.tourismbus_m_btn,
.recruit_btn_txt,
.recruit_btn2,
.back,
.course_detail,
button,
.txt_map a {
  transition:
    top 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

/* ===========================
menu
============================ */
/* nav設定 */
.nav {
  background: #fff;
  padding: 20px 40px 30px;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.4s;
}

.nav__close {
  display: block;
  margin-left: auto;
  width: 38px;
  height: 38px;
  cursor: pointer;
}

.nav__menu {
  color: #21562b;
  font-size: 2rem;
  font-weight: 900;
  border-bottom: 2px solid #21562b;
  text-align: center;
}

.nav__items1 {
  display: flex;
  justify-content: space-between;
}

.nav-items {
  font-size: 2rem;
  font-weight: 700;
  height: 45px;
  width: 90px;
  padding: 5px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 2px solid #342f2f;
  background: #fffae9;
  box-shadow: 3px 5px 2px 0px rgba(0, 0, 0, 0.4);
  margin-top: 20px;
  position: relative;
  top: 0;
}

.nav-items:hover {
  top: 4px;
  box-shadow: 0 0 rgba(0, 0, 0, 0.4);
}

.nav_img {
  width: 35px;
  height: 35px;
}

.nav__items2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 20px;
}

.nav-items__item {
  width: 46%;
  height: 95px;
  border-radius: 20px;
  border: 2px solid #342f2f;
  background: #fffae9;
  box-shadow: 3px 5px 2px 0px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
}

.nav-items__item:hover {
  top: 4px;
  box-shadow: 0 0 rgba(0, 0, 0, 0.4);
}

.nav-items a,
.nav-items__item a {
  display: flex; /* 中央寄せレイアウト */
  flex-direction: column; /* ← 縦並びにする */
  justify-content: center;
  align-items: center;
  width: 100%; /* liいっぱいに広げる */
  height: 100%; /* liいっぱいに広げる */
  text-decoration: none; /* 下線消す */
  color: inherit; /* 親要素の文字色を引き継ぐ */
  border-radius: inherit; /* liの角丸を継承 */
}

.nav_txt {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

.menu__icon {
  height: 45px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.nav__phonenumber {
  margin-top: 50px;
}

.phone__img2 {
  width: 25px;
  height: 25px;
}

.phonenumber2 {
  font-size: 2rem;
  font-weight: 900;
}

.opentime2 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 25px; /* 178.571% */
}

/* nav表示 */
.nav.active {
  transform: translateX(0);
}

.arrowup {
  width: 45px;
  height: 45px;
}

.pagetop {
  z-index: 60;
  position: fixed;
  right: 10px;
  bottom: 10px;
}

@media screen and (min-width: 769px) {
  .nav {
    width: 35%;
    height: auto;
    border-radius: 0 0 0 2vw;
    border: 0.2vw solid #342f2f;
    transform-origin: top right;
    transition: transform 0.3s ease;
  }

  /* 画面縮小時に全体をスケーリング */
  @media screen and (max-width: 1400px) {
    .nav {
      zoom: calc(100vw / 1400); /* Chrome / Edge / Firefox */
      transform: scale(calc(100vw / 1400)); /* Safari fallback */
    }
  }

  .nav__close {
    width: 3.5vw;
    height: 3.5vw;
  }

  .nav__menu {
    font-size: 1.8vw;
  }

  .nav-items {
    width: 9vw;
    height: 3vw;
    font-size: 1.4vw;
  }

  .nav_img {
    width: 2.2vw;
    height: 2.2vw;
  }

  .nav-items__item {
    height: 8vw;
  }

  .nav_txt {
    font-size: 1.4vw;
  }

  .menu__icon {
    height: 3vw;
    margin-top: 0.3vw;
  }

  .nav__phonenumber {
    margin-top: 2vw;
  }

  .phone__img2 {
    width: 2.5vw;
    height: 2.5vw;
  }

  .phonenumber2 {
    font-size: 1.6vw;
  }

  .opentime2 {
    font-size: 0.8vw;
  }

  .arrowup {
    width: 5vw;
    height: 5vw;
  }
}

/* ============================
main
==============================*/
/* main header */
.mainvisual_sp_img {
  width: 100%;
  height: 530px;
  object-fit: cover;
}

.mainvisual_pc_img {
  display: none;
}

.mainvisual {
  position: relative;
}

.catchcopy {
  position: absolute;
  right: 10px;
  top: 120px;
  z-index: 5;
}

.maincopy {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  text-align: end;
}

@media screen and (min-width: 769px) {
  .mainvisual_pc_img {
    display: block;
    width: 100%;
    height: 750px;
    object-fit: cover;
  }

  .mainvisual_sp_img {
    display: none;
  }

  .catchcopy {
    right: 50px;
    top: 150px;
  }

  .maincopy {
    font-size: 4.5rem;
  }
}
/* pc 769px */

/* about us */
.section--aboutus {
  border-bottom: 3px dotted #21562b;
}

.aboutus-wrapper {
  position: relative;
  border-bottom: 2px solid #21562b;
}

.aboutus-wrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #21562b;
  position: absolute;
  left: 0;
  right: 0;
  top: 9px;
  transform: translateY(-50%);
}

.aboutus-wrapper::after {
  content: "";
  display: block;
  width: 52px;
  height: 35px;
  background-image: url(../img/taxi_illast.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -52px;
  right: 0;
  transform-origin: center 70%;
  animation: taxiTwist 3.8s ease-in-out infinite;
}

.en_topic_a {
  color: var(--primary-green);
  font-family: Outfit;
  font-size: 1.2rem;
  font-weight: 700;
  width: fit-content;
  z-index: 20;
  padding-right: 20px;
  background-color: var(--primary-beige);
  position: relative;
}

.topic {
  color: var(--primary-black);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 20px 0;
}

.maincaption__txt {
  color: var(--primary-black);
  font-size: 1.4rem;
  font-weight: 500;
}

.aboutus__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin-top: 30px;
  border-radius: 20px;
  box-shadow: 3px 5px 2px 0 rgba(0, 0, 0, 0.4);
  height: 100%;
  position: relative;
  transition:
    top 0.3s ease,
    box-shadow 0.3s ease;
}

.content__company1:hover,
.content__company2:hover {
  top: 4px;
  box-shadow: 0 0 rgba(0, 0, 0, 0.4);
}

.content__company1 {
  background-color: var(--primary-orange);
}

.content__company2 {
  background: var(--primary-green);
}

.content__topic {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

/* 画像はカード幅に合わせて自動縮小 */
.company__img,
.carsinfo__img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-top: 10px;
  object-fit: cover;
}

.clickconv {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: -5px;
}

.content__txt {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

.three-right {
  display: flex;
  align-items: center;
}

.right-white {
  width: 15px;
  height: 15px;
}

@media screen and (min-width: 769px) {
  .aboutus-wrapper::before {
    top: 20px;
  }

  .aboutus-wrapper::after {
    width: 120px;
    height: 80px;
    bottom: -84px;
  }

  .en_topic_a {
    font-size: 2.2rem;
  }

  .topic {
    font-size: 2.8rem;
    margin: 40px 0;
  }

  .maincaption__txt {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .aboutus__content {
    gap: 30px;
  }

  .content__company1,
  .content__company2 {
    padding: 30px 70px;
  }

  .content__topic {
    font-size: 2.6rem;
  }

  .company__img,
  .carsinfo__img {
    height: 285px;
    width: 100%; /* 横幅はカード幅に合わせる */
    margin-top: 10px;
  }

  .clickconv {
    margin-top: 10px;
  }

  .content__txt {
    font-size: 1.8rem;
  }

  .right-white {
    width: 20px;
    height: 20px;
  }
}
/* pc 769px */

/* ---------------------------------- */
/* スマホ以下は1列に */
@media screen and (max-width: 480px) {
  .aboutus__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* service */
.service-wrapper {
  text-align: center;
  position: relative;
  border-bottom: 2px solid #21562b;
}

.service-wrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #21562b;
  position: absolute;
  left: 0;
  right: 0;
  top: 9px;
  transform: translateY(-50%);
}

.en_topic_s {
  color: var(--primary-green);
  font-family: Outfit;
  font-size: 1.2rem;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto;
  z-index: 20;
  padding: 0 20px;
  background-color: var(--primary-beige);
  position: relative;
}

.service__content {
  margin-bottom: 30px;
}

.content__service1 {
  background-color: var(--primary-blue);
}

.content__service2 {
  background-color: var(--primary-pink);
}

.content__service3 {
  background-color: var(--primary-orange);
}

/* カード共通設定（高さ揃え） */
.content__service1,
.content__service2,
.content__service3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service__topic {
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 2px solid #fff;
  margin-top: 10px;

  display: block;
  width: 100%; /* カード幅いっぱい */
  padding-bottom: 5px;
}

.service__info {
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 10px auto;
}

.service__info2 {
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 10px auto;
}

.taxi_info {
  width: 86%;
}

.service__txt {
  width: 50%;
  text-align: left;
}

.service__txt2 {
  width: 100%;
  text-align: left;
}

.service__img {
  width: -webkit-fill-available;
  height: 220px;
  border-radius: 20px 20px 0px 0px;
  object-fit: cover;
}

/* ボタンをカード幅いっぱい＆下揃え */
.service__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  margin-top: auto; /* 高さ調整で下寄せ */
  color: #342f2f;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 40px;
  border: 2px solid #000;
  background: #fff;
  box-shadow: 3px 5px 2px 0px rgba(0, 0, 0, 0.4);
  position: relative;
  top: 0;
}

.service__btn:hover {
  top: 4px;
  box-shadow: 0 0 rgba(0, 0, 0, 0.4);
}

@media screen and (min-width: 769px) {
  .service-wrapper::before {
    top: 20px;
  }

  .en_topic_s {
    font-size: 3rem;
  }

  /* 常に3列にして可変対応 */
  .service__content {
    display: grid;
    justify-content: center;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .content__service1,
  .content__service2,
  .content__service3 {
    padding: 30px;
    margin-top: 0;
    width: 100%;
  }

  .service__img {
    height: 225px;
    width: 100%;
  }

  .service__topic {
    font-size: 2.4rem;
    margin-top: 20px;
  }

  .taxi_info {
    width: 93%;
    margin: 20px auto;
  }

  .service__txt,
  .service__txt2 {
    font-size: 1.6rem;
  }

  .service__btn {
    font-size: 2rem;
  }

  .service__info2 {
    margin: 28px auto;
  }
}
/* pc 769px */
/* call a taxi */
.section--callataxi {
  padding: 20px;
}

.callataxi::after {
  content: "";
  display: block;
  width: 100px;
  height: 75px;
  background-image: url(../img/taxi_bt.webp);
  background-size: cover;
  position: absolute;
  bottom: 0px;
  right: 10px;
  z-index: 50;
}

@keyframes taxiTwist {
  0%,
  52%,
  100% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(8deg);
  }
  70% {
    transform: rotate(-10deg);
  }
  80% {
    transform: rotate(5deg);
  }
  90% {
    transform: rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aboutus-wrapper::after {
    animation: none;
  }
}

.callataxi {
  text-align: center;
  background-color: var(--primary-green);
  border-radius: 50%;
  padding: 40px;
  position: relative;
}

.call_topic {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: -10px;
}

.call_line {
  width: 65%;
  margin-top: 3px;
}

.number {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone__img3 {
  width: 30px;
  height: 30px;
  margin-top: 10px;
}

.phonenumber3 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  margin-top: 10px;
}

.opentime3 {
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 25px; /* 156.25% */
}

.go_img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  border: 1px solid #342f2f;
}

.go_txt1 {
  color: var(--primary-black);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 112%; /* 13.44px */
}

.go_txt2 {
  color: var(--primary-black);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 112%;
}

.go_google,
.go_apple {
  width: 80px;
  height: auto;
}

.app_go {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #fff;
  width: 170px;
  height: auto;
  margin: 10px auto;
  position: relative;
  z-index: 10;
}

.go_app_items {
  display: grid;
  gap: 2px;
  margin-top: 5px;
}

.decoration_call {
  position: absolute;
  left: 0;
  top: 40%;
  color: rgba(181, 179, 179, 0.2);
  font-family: Outfit;
  font-size: 4.5rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: visible;
  pointer-events: none;
  animation: taxiTextMarquee 72s linear infinite;
  will-change: transform;
}

.decoration_call::after {
  content: "TAXITAXITAXITAXITAXITAXITAXITAXITAXITAXITAXITAXITAXITAXITAXITAXITAXITAXITAXITAXITAXITAXITAXITAXI";
}

@keyframes taxiTextMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .decoration_call {
    left: -30px;
    animation: none;
  }
}

@media screen and (min-width: 769px) {
  .callataxi {
    padding: 100px;
    height: auto;
    width: fit-content;
    margin: 0 auto;
  }

  .callataxi::after {
    width: 300px;
    height: 230px;
    bottom: 0px;
    right: -125px;
  }

  .call_topic {
    font-size: 3.2rem;
  }

  .call_line {
    margin-bottom: 10px;
  }

  .phone__img3 {
    width: 50px;
    height: 50px;
  }

  .phonenumber3 {
    font-size: 4.5rem;
  }

  .opentime3 {
    font-size: 2.2rem;
  }

  .app_go {
    padding: 20px;
    gap: 30px;
    width: 450px;
    margin: 40px auto;
  }

  .go_img {
    width: 130px;
    height: 130px;
    border-radius: 20px;
  }

  .sp {
    display: none;
  }

  .go_txt1 {
    font-size: 2.2rem;
  }

  .go_txt2 {
    font-size: 3rem;
  }

  .go_app_items {
    display: block;
    margin-top: 5px;
  }

  .go_google,
  .go_apple {
    width: 140px;
    margin-top: 5px;
  }

  .decoration_call {
    font-size: 16rem;
    left: 0;
    top: 35%;
    animation-duration: 108s;
  }
}
/* pc 769px */

/* news */
.news-wrapper {
  border-radius: 20px;
  border: 2px solid #21562b;
  background: #fff;
  padding: 20px;
  position: relative;
}

.topic-news {
  margin: 0 auto 5px;
  text-align: center;
}

/* JSで流し込まれる記事 */
#news-list {
  margin-top: 20px;
}

.news__items {
  padding: 10px 0;
  border-bottom: 2px solid #fa7921;
}

.news_td {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap; /* 小さい画面で折り返しできるように */
}

.news_date {
  color: #fff;
  font-family: Outfit, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 180%; /* 21.6px */
  padding: 0px 10px;
  border-radius: 10px;
  background: var(--primary-orange);
  white-space: nowrap; /* 日付を折り返さない */
}

.news_title {
  color: var(--primary-black);
  font-size: 1.4rem;
  font-weight: 600;
  flex: 1; /* タイトル部分を可変に */
}

.news_content {
  color: var(--primary-black);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 140%;
  margin-top: 3px;
}

.decoration_news {
  position: absolute;
  color: rgba(250, 121, 33, 0.2);
  font-family: Outfit;
  font-size: 4rem;
  font-weight: 800;
  bottom: 230px;
  left: 0;
  display: inline-block;
  transform: rotate(-20deg);
}

/* PCサイズ */
@media screen and (min-width: 769px) {
  .news-wrapper {
    padding: 50px;
  }

  .en_topic-news {
    font-size: 3rem;
  }

  #news-list {
    margin-top: 30px;
  }

  .news_date {
    font-size: 1.6rem;
  }

  .news_title {
    font-size: 1.8rem;
  }

  .news_content {
    font-size: 1.6rem;
    margin-top: 10px;
  }

  .decoration_news {
    font-size: 7rem;
    left: 10px;
    bottom: 320px;
    transform: rotate(-15deg);
  }
}
/* pc 769px */

/* recruitment */
.recruitment-wrapper {
  padding: 50px 0px;
  align-items: center;
  gap: 30px;
  border-radius: 20px;
  border: 2px solid #3096c9;
  background: #fff;
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;
}

.decoration_rec {
  position: absolute;
  color: rgba(48, 150, 201, 0.2);
  font-family: Outfit;
  font-size: 5rem;
  font-weight: 800;
  bottom: -10px;
  left: -10px;
}

.recruitment_txt {
  color: var(--primary-black);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}

.recruitment_btn {
  width: 200px;
  height: auto;
  display: flex;
  padding: 10px;
  margin: 30px auto auto;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: var(--primary-blue);
  box-shadow: 3px 5px 2px 0px rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  top: 0;
  z-index: 70;
}

.recruitment_btn:hover {
  top: 4px;
  box-shadow: 0 0 rgba(0, 0, 0, 0.4);
}

.main {
  position: relative;
}

.decoration {
  position: absolute;
  bottom: -1px;
}

.section--recruitment::after {
  content: "";
  display: block;
  width: 40px;
  height: 30px;
  background-image: url(../img/bus_illast.webp);
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 50;
  bottom: -5px;
  right: 20px;
}

@media screen and (min-width: 769px) {
  .section--recruitment {
    padding: 20px 70px 200px;
  }
  .recruitment-wrapper {
    margin: 0 auto;
    width: 710px;
    height: auto;
    padding: 50px 80px;
  }

  .recruitment_txt {
    font-size: 2.6rem;
  }

  .recruitment_btn {
    font-size: 2rem;
    width: 300px;
    padding: 15px 0;
  }

  .decoration_rec {
    font-size: 10rem;
    bottom: -30px;
  }

  .section--recruitment::after {
    width: 133px;
    height: 100px;
    bottom: -10px;
    right: 50px;
  }
}

/* pc 769px */
/* footer */
.footer {
  padding: 30px 20px;
  align-items: center;
  background: #e9d28c;
}

.footer-logo {
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.footer_logotxt {
  font-size: 1.8rem;
  font-weight: 800;
}

.address {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
}

.phone__img4 {
  width: 25px;
  height: 25px;
}

.phonenumber4 {
  font-size: 1.8rem;
  font-weight: 800;
}

.opentime4 {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 13px; /* 108.333% */
}

.footer__phonenumber {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 5px;
}

.footer-menu {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 20px auto 30px;
}

.footer-nav-item {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 20px;
}

.policy {
  display: flex;
  justify-content: right;
  margin-right: 10px;
  gap: 5px;
}

.privacypolicy,
.sitepolicy,
.policy p {
  color: rgba(52, 47, 47, 0.6);
  font-size: 1rem;
  font-weight: 400;
}

.copy {
  background: #d7af75;
  text-align: center;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 400;
}

@media screen and (min-width: 769px) {
  .footer_content {
    display: flex;
    justify-content: space-between;
    padding: 30px 70px;
    align-items: center;
  }

  .footer-menu {
    margin: 0;
  }

  .footer_logotxt {
    font-size: 2.6rem;
  }

  .address {
    font-size: 1.6rem;
  }

  .phone__img4 {
    width: 40px;
    height: 40px;
  }

  .phonenumber4 {
    font-size: 2.6rem;
  }

  .opentime4 {
    font-size: 1.4rem;
    line-height: 20px;
    margin-top: 5px;
  }

  .footer-nav-item {
    font-size: 1.6rem;
  }

  .privacypolicy,
  .sitepolicy,
  .policy p {
    font-size: 1.2rem;
  }

  .policy {
    margin-right: 70px;
    gap: 10px;
  }

  .copy {
    font-size: 1.4rem;
  }
}

/* pc 769px */
