@charset "UTF-8" ;

html {
  font-size: 100%;
  max-width: 1980px;
  height: 100vh;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Noto Sans JP', sans-serif;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
	vertical-align: bottom;
}
#wrap {
  margin: 0 auto;
    overflow: hidden;
}
p {
  line-height: 1;
  letter-spacing: 0.2em;
  color: #252106;
}
li {
  list-style: none;
}
h1 {
  line-height: 0;
}
h2 {
  font-size: 36px;
  font-family: "dnp-shuei-nmincho-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.4em;
  line-height: 1;
}
span {
  line-height: 1;
  letter-spacing: 0.4rem;

}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;

  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 20px 40px;

  /* ぼかしエフェクト */
  backdrop-filter: blur(10px);
}
.top_logo {
  display: flex;
  gap: 15px;
  align-items: center;
}
.logo img{
  width: 40px;
  height: auto;
}
.text_en {
  font-size: 10px;
  font-family: "dnp-shuei-nmincho-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.4em;
  padding-left: 2px;
}
.text_jp {
  font-size: 18px;
  font-family: "dnp-shuei-nmincho-std",   sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-top: 10px;
  letter-spacing: 0.2em;
}
.ContactTel p {
  font-family: "a-otf-gothic-mb101-pr6n", sans-serif;
  font-weight: bold;
  font-style: normal;
}
.ContactTel_Title {
  font-size: 14px;
  display: flex;
  align-items: end;

}
.ContactTel_Number {
  font-size: 18px;
  padding-top: 10px;
}
.ContactTel_Number span {
  font-size: 12px;
}

.ContactTel img {
  height: 15px;
  width: auto;
  padding-right: 5px;
}

.Contact_Wrap {
  display: flex;
  gap: 40px;
  align-items: end;
}
.ContactForm_Button a {
  display: flex;
  align-items: center;
  font-size: 14px;
  letter-spacing:  0.2rem;
  font-weight: bold;
  color: #fff;
  background-color: #0aa;
  padding: 20px;
  border-radius: 5px;
}
.ContactForm_Button a:hover {
  opacity: 0.8;

}
.ContactForm_Button img {
  height: 15px;
  width: auto;
  padding-right: 10px;
}
.contact-button {
  background-color: #8a8a2c;
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
  margin-left: 15px;
}
.nav {
  display: flex;
  justify-content: center;
  gap: 120px;
  padding-top: 120px;
}
.nav a {
  font-size: 14px;
  color: #252106;
  letter-spacing: 0.2rem;
  font-family: "dnp-shuei-nmincho-std", sans-serif;
  font-weight: 400;
  font-style: normal;

}
/* nv hover */
.nav a,
.recruit-button a,
.info-button a,
.recruit-button a {
  /* 文字色は透明にして背景が見えるようにする */
  color: transparent;

  /* オレンジと黒が50%の位置で切り替わるグラデーション */
  background: linear-gradient(to right, #8a8a2c 50%, #252106 50%) 100%;
  /* 背景をテキストで切り抜く */
  background-clip: text;

  /* 横幅は200%にしてグラデーションの青部分は見えないようにする */
  background-size: 200% 100%;

  transition: background-position 0.3s;
}
.nav a:hover,
.recruit-button a:hover,
.info-button a:hover,
.recruit-button a:hover {
  /* グラデーションの位置を移動して、オレンジ部分を見せる */
  background-position: 0 100%;
}



/* メインビジュアル */
#mainvisual {
  background-image: 
  url(../img/fv_1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 1980px;
  width: 100%;
  /* height: 600px; */
  height: 100vh;
  margin-top: 20px;

}

.mainvisualbk {
  display: inline-block; 
  background: rgba(0,0,0,0.3);
  padding: 20px 30px;
  margin-left: 96px;
  margin-top: 400px;
}

#mainvisual h2 {
  font-size: 35px;
  color: #efefeb;
  margin: 0;
}

#mainvisual img {
  margin-top: 20px;
  display: block;
}



/* アニメーション */

/* ヘッダー */
.fadein_from-above {
    animation-name: fadein_from-above;
    animation-delay: 1.5s;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    transform: translateY(-50px);
    opacity: 0;
}
@keyframes fadein_from-above {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* 2.5秒間かけて下から上にフェードイン */
.fadein_navilist {
    animation-name: fadein_navilist;
    animation-delay: 2s;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    transform: translateY(0px);
    opacity: 0;
}
@keyframes fadein_navilist {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
/* 3秒間かけて下から上にフェードイン */
.fadein_fvimg {
    animation-name: fadein_fvimg;
    animation-delay: 2s;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadein_fvimg {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
/* 4秒間かけてフェードイン */
.fadein_copy h2 {
    animation-name: fadein_copy;
    animation-delay: 2s;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    transform: translateX(50px);
    opacity: 0;
}
@keyframes fadein_copy {
    0% {
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
/* 4秒間かけてフェードイン */
.fadein_copy img {
    animation-name: fadein_copy;
    animation-delay: 2s;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    transform: translateX(70px);
    opacity: 0;
}
@keyframes fadein_copy {
    0% {
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* スクロールしたらその場で出現 */
/* .fadein img {
  transform: translateX(0px);
  opacity: 0;
  transition: all 2.8s ease;
}
.fadein.show img {
  transform: translateX(0);
  opacity: 1;
} */


/* スクロールしたら右から出現 */
.fadein_from-right img {
  transform: translateX(70px);
  opacity: 0;
  transition: all 2s ease;
}
.fadein_from-right.show img {
  transform: translateX(0);
  opacity: 1;
}

/* スクロールしたら左から出現 */
.fadein_from-left img {
  transform: translateX(-70px);
  opacity: 0;
  transition: all 2s ease;
}
.fadein_from-left.show img {
  transform: translateX(0);
  opacity: 1;
}

/* スクロールしたら下から出現 */
.fadein_from-below {
  transform: translateY(60px);
  opacity: 0;
  transition: all 2s ease;
}
.fadein_from-below.show {
  transform: translateY(0);
  opacity: 1;
}

/* スクロールしたらその場で出現 */
.fadein_on-the-spot {
  transform: translateY(0px);
  opacity: 0;
  transition: all 3s ease;
}
.fadein_on-the-spot.show {
  transform: translateY(0);
  opacity: 1;
}


.about-section {
  /* background-color: #f2f2ed; */
  /* padding: 60px 20px; */
}

.img_taxi {
    text-align: center;
}
.img_taxi img {
  width: 150px;
  padding-top: 150px;
}
.img_mountain {
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 100;
}
.img_mountain img {
  width: 600px;
  opacity: 0.5;
  text-align: right;
}

.about-container {
  /* max-width: 1100px; */
  margin: 0 auto;
  /* display: flex; */
  /* gap: 40px; */
  position: relative;
  padding-top: 150px;
}

.about-title-vertical {
  position: absolute;
  left: 180px;
  z-index: 20;
  writing-mode: vertical-rl;
  text-align: start;
  font-family: serif;
  color: #252106;
  line-height: 1;
}

.about-title-vertical span {
  font-size: 14px;
  letter-spacing: 0.4rem;
  transform: rotate(360deg);
  display: inline-block;
  color: #8a8a2c;
  padding-top: 5px;
  padding-left: 10px;
}

.about-box {
  position: relative;
  background-color: #efefeb;
  /* border-radius: 10px 0 0 10px; */
  flex: 1;
  font-size: 15px;
  line-height: 2;
  color: #252106;
  margin-left: 200px;
  padding-left: 200px;
  padding-right: 40px;
  padding-top: 130px;
  padding-bottom: 150px;
}
.about-box .text_jp {
  font-size: 24px;
  letter-spacing: 0.4em;
  line-height: 2;
}
.about-box p {
  font-family: "dnp-shuei-nmincho-std", sans-serif;
  font-style: normal;
  font-size: 16px;
  padding-top: 40px;
  letter-spacing: 0.4rem;
  line-height: 2;
}

.about-lead {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 1em;
}


.hero-image {
  width: 100%;
  height: auto;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.service {
  margin-top: 20px;
}

.call-link {
  display: inline-block;
  margin-top: 10px;
  background-color: #8a8a2c;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: #8a8a2c;
  /* margin-top: 150px; */
}
.footer p {
  color: #efefeb;
  font-size: 10px;
}



/* 営業情報 */
.info-section {
}
.info-container {
  display: flex;
  gap: 150px;
  padding-left: 200px;
  padding-top: 125px;
}
.info-title {
  min-width: 120px;
  font-family: serif;
  text-align: left;
  color: #252106;
  padding-top: 25px;
}
.info-title span {
  font-size: 14px;
  letter-spacing: 0.4rem;
  color: #8a8a2c;
  display: block;
  padding-left: 3px;
}
.info-title h2 {
  font-size: 36px;
  margin: 0;
  padding-top: 10px;
}
.info-content dl {
  margin: 0;
  width: 100%;
}
.info-row {
  display: flex;
  /* border-bottom: 1px dotted #252106; */
  padding: 20px;
  align-items: baseline;
}
.info-row dt {
  /* font-family: "a-otf-gothic-mb101-pr6n", sans-serif; */
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  color: #252106;
  letter-spacing: 0.4rem;
  width: 150px;
}
.info-row dd {
  font-family: "a-otf-gothic-mb101-pr6n", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  margin: 0;
  color: #252106;
  letter-spacing: 0.4rem;
}

.info-row dd small {
  font-size: 12px;
  color: #666;
}
.info-button {
  margin-top: 40px;
  margin-bottom: 150px;
}
.info-button a {
  font-family: "dnp-shuei-nmincho-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.2em;
    line-height: 1;
  /* display: flex; */
  align-items: center;
  font-size: 16px;
  letter-spacing:  0.2rem;
  /* font-weight: bold; */
  /* color: #252106; */
  /* background-color: #199385; */
  /* padding: 20px; */
  border-radius: 5px;
}
.info-button img {
  height: 15px;
  width: auto;
  padding-right: 10px;
}
.contact-button {
  background-color: #8a8a2c;
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
  margin-left: 15px;
}

/* 車種と料金をみる */
.info-button {
    /* margin: 10px; */
    /* width: 250px; */
    height: 50px;   
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    /* color: #000; */
    /* border: 1px solid; */
    cursor: pointer;
}

.yazirusi {
    display: inline-flex;
    margin-left: 10px;
    width: 100px;
    height: 10px;
    position: relative;
    right: 10px;
    top: 2px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: skew(45deg);
    transform: skew(45deg);
}

/* サービス内容--------------------- */
.service-section {
  background: #efefeb;
  /* padding: 60px 20px; */
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  padding-bottom: 150px;
}

.service-title {
  min-width: 120px;
  font-family: serif;
  text-align: center;
  color: #252106;
  padding-top: 150px;
}
.service-title span {
  font-size: 14px;
  letter-spacing: 0.4rem;
  color: #8a8a2c;
  display: block;
  padding-left: 3px;
}
.service-title h2 {
  font-size: 36px;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 150px;
}


.section-title span {
  font-size: 12px;
  color: #666;
  letter-spacing: 2px;
}

.section-title h2 {
  font-size: 28px;
  margin: 5px 0;
  color: #252106;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  max-width: 1200px;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0 40px;
}
.service-text {
  flex: 1;
  min-width: 300px;
}

.service-text h3 {
  font-size: 24px;
  letter-spacing: 0.2rem;
  /* margin-bottom: 10px; */
  font-weight: bold;
  color: #252106;
}

.service-text h3 span {
  color: #0aa;
  font-size: 36px;
  font-weight: bold;
  /* margin-right: 10px; */
  display: inline-block;
  /* vertical-align: middle; */
  letter-spacing: 0.4rem;
}

.service-text p {
  font-size: 16px;
  color: #252106;
  line-height: 2;
  padding-left: 20px;
  margin-left: 43px;
  margin-top: 20px;
  border-left: 3px dashed rgba(37,33,6,0.2);
}

.service-image {
  flex: 1;
  min-width: 300px;
}

.service-image img {
  width: 500px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 採用情報 */
 .recruit_section {
      display: flex;
      max-width: 1200px;
      margin: 0 auto;
      padding: 150px 40px;
font-family: "a-otf-gothic-mb101-pr6n", sans-serif;
    font-weight: bold;
    font-style: normal;    }
.recruit_text-area {
  /* min-width: 120px; */
  /* font-family: serif; */
  /* text-align: center; */
  color: #252106;
  /* padding-top: 150px; */
}
.recruit_text-area span {
  font-family: "dnp-shuei-nmincho-std", sans-serif;
    font-weight: 400;
    font-style: normal;
  font-size: 14px;
  letter-spacing: 0.4rem;
  color: #8a8a2c;
  display: block;
  padding-left: 3px;
}
.recruit_text-area h2 {
  font-size: 36px;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 150px;
}

    .recruit_text-area h3 {
        font-family: "dnp-shuei-nmincho-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.4em;
    line-height: 2;

      font-size: 24px;
      font-weight: normal;
      margin-bottom: 40px;
    }
    .recruit_text-area p {
      line-height: 2.4;
      font-size: 16px;
      letter-spacing: 0.4rem;
    }

    .recruit_image-area {
      position: relative;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .recruit_image-area img {
      width: 500px;
      height: auto;
      border-radius: 8px;
    }
    .recruit_image1 {
      width: 100%;
    }
    .recruit_image2 {
      position: absolute;
      width: 400px;
      top: 43%;
    left: 40%;
    }

    .recruit-button {
      padding-top: 40px;
    }
    .recruit-button a {
  font-family: "dnp-shuei-nmincho-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.2em;
    line-height: 1;
  /* display: flex; */
  align-items: center;
  font-size: 16px;
  letter-spacing:  0.2rem;
  /* font-weight: bold; */
  /* color: #252106; */
  /* background-color: #199385; */
  /* padding: 20px; */
  border-radius: 5px;
}
.recruit-button img {
  height: 15px;
  width: auto;
  padding-right: 10px;
}

/* お問い合わせ */
 .contact-section {
      text-align: center;
      padding: 150px 20px;
      background-color: #efefeb;
    }

    .contact-section span {
      color: #8a8a2c;
      display: block;
      font-size: 14px;
      letter-spacing: 0.4em;
      margin-bottom: 10px;
          font-family: "dnp-shuei-nmincho-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
    .contact-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 150px;
      padding-top: 100px;
    }
  .contact-container a {
    letter-spacing: 0.4rem;
  }
  .contact-container a:hover {
    opacity: 0.7;
  }
    .contact-container a img{
      padding-right: 10px;

  }
    .contact-box {
      /* flex: 1;
      min-width: 260px;
      max-width: 300px; */
    }
    .contact-box p {
    font-family: "dnp-shuei-nmincho-std", sans-serif;
    font-weight: 400;
    font-style: normal;

      font-size: 16px;
      letter-spacing: 0.4rem;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .email-button {
      display: inline-flex;
      align-items: center;
      padding: 20px 40px;
      background-color: #8a8a2c;
      color: white;
      font-weight: bold;
      font-size: 16px;
      text-decoration: none;
      border-radius: 5px;
    }

  .phone-number {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #2d2a00;
    letter-spacing: 0.4rem;
    font-weight: bold;
    line-height: 1;
    padding-top: 10px;
    }
    .phone-number img {
      height: 21px;
      padding-right: 10px;
    }

    .contact-form img {
      height: 20px;
    }
    .hours {
      font-size: 14px;
      /* margin-top: 8px; */
      color: #252106;
                  letter-spacing: 0.4rem;
font-family: "a-otf-gothic-mb101-pr6n", sans-serif;
    font-weight: bold;
    font-style: normal;    
    /* padding-left: 23px; */
    padding-top: 5px;

    }


/* 会社概要 */
.company-section {
  padding: 150px 40px 0 40px;
}

.company-content {
  display: flex;
  justify-content: center;
}

.company-title-vertical {
  /* position: absolute;
  left: 180px;
  z-index: 20; */
  writing-mode: vertical-rl;
  text-align: start;
  font-family: serif;
  color: #252106;
  line-height: 1;
  padding-top: 20px;
}

.company-title-vertical span {
      font-family: "dnp-shuei-nmincho-std", sans-serif;
    font-weight: 400;
    font-style: normal;
  font-size: 14px;
  letter-spacing: 0.4rem;
  transform: rotate(360deg);
  display: inline-block;
  color: #8a8a2c;
  padding-top: 5px;
  padding-left: 10px;
}

    /* .company-section h2 {
      font-size: 28px;
      margin-bottom: 30px;
      writing-mode: vertical-rl;
      text-orientation: upright;
      float: left;
      margin-right: 150px;
    } */
    .company-section table {
      border-collapse: collapse;
      width: 100%;
      max-width: 800px;
      margin-left: 150px;
      color: #252106;
    }
    .company-section th {
      padding-right: 150px;
    }
    .company-section th, 
    .company-section td {
      padding: 20px 0;
      border-bottom: 1.5px solid #efefeb;
      text-align: left;
      vertical-align: top;
      font-size: 16px;
      letter-spacing: 0.4rem;
    }
    .company-section th {
      font-weight: bold;
      white-space: nowrap;
      padding-right: 150px;
    }

.company-image {
  margin-top: 60px;
  text-align: center;
}
.company-image img {
  max-width: 500px;
  border-radius: 6px;
  padding-top: 20px;
}

    /* 上へ戻るボタン */
    #pagetop {
  position: fixed;
  right: 40px;
  bottom: 100px;
  z-index: 50;
  display: block;
  width: 42px;
  height:42px;
  cursor: pointer;
  border: 1px solid #8a8a2c;
  border-radius: 4px;
  opacity: 0;
  transition: .5s;
}
#pagetop.visible {
  opacity: 1;
  pointer-events: auto;
}
#pagetop span {
  position: absolute;
  top: 16px;
  left: 11px;
  display: block;
  width:18px;
  height:18px;
  content:"";
  border-top:2px solid #8a8a2c;
  border-right:2px solid #8a8a2c;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
 #pagetop:hover {
  background: rgba(138, 138, 44, .2);
 }

/*  コンタクトフォーム */
/* 問い合わせフォーム
--------------------------------------------- */
.contact_bg {
  background-color: #efefeb;
}
.hissu:after {
    margin-left: .2rem;
    color: #dc3545;
    content: "*";
}
.contact {
  max-width: 800px;
    margin: 0 auto;
    padding: 150px 40px;
}
.contact_wrap {
    width: 90%;
    margin: 0 auto;
}
#contact_img {
    background-image: url(../img/contact.png);
    min-height: 500px;
    background-position: top;
}
.Form h2 {
    margin-bottom: 80px;
    margin-top: 80px;
    text-align: center;
    color: #333;
}
.Form_tittle {
    text-align: center;
}
.Form_tittle h2 {
    display: flex;
    align-items: center;
    }
.Form_tittle h2 {
    position: relative;
    display: inline-block;
    padding: 0 100px;
    /* margin-bottom: 80px; */
}
.Form_tittle h2:before,
.Form_tittle h2:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #067fbd;
}
.Form_tittle h2:before {
    left: 0;
}
.Form_tittle h2:after {
    right: 0;
}
.Form_tittle h2 {
    text-align: center;
    color: #333;
    font-size: 32px;
    font-weight: 400;
}
.Form_tittle span {
    color:  #fe5f73;
    font-weight: bold;
}
.Form h2 span {
    display: block;
    margin-top: 4px;
    font-size: 16px;
}
.Form_tittle h2 span {
    display: block;
    margin-top: 4px;
    font-size: 16px;
}
.Form {
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	max-width: 720px;
}
.Form-Item {
border-bottom: 1px solid rgba(37, 33, 6, .2);
  padding: 40px 0;
    width: 100%;
    display: flex;
    align-items: center;
}
.Form-Item-Label {
width: 100%;
    max-width: 248px;
    letter-spacing: 0.05em;
    font-size: 16px;
}
.Form-Item-Label-Required {
	color: #fff;
	font-size: 11px;
	text-align: center;
	background-color: #e00202;
	border-radius: 3px;
	padding: 1px 5px;
	margin-left: 10px;
	margin-right: 10px;
}
.Form-Item-Input {
	border: 1px solid rgba(37, 33, 6, .2);
	margin-left: 40px;
	padding-left: 1em;
	padding-right: 1em;
	height: 48px;
	flex: 1;
	width: 100%;
	max-width: 410px;
	background: #fff;
  border-radius: 3px;
  }
.Form-Item-Textarea {
	border: 1px solid #ddd;
	margin-left: 40px;
	padding-left: 1em;
	padding-right: 1em;
	height: 216px;
	flex: 1;
	width: 100%;
	max-width: 410px;
	background: #fff;
}
/* .Form-Btn {
	margin-top: 32px;
    margin-bottom: 240px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	padding-bottom: 20px;
	width: 150px;
	display: block;
	letter-spacing: 0.05em;
	background: #067fbd;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	border: none;
	text-align: center;
} */
.Form-Btn {
  font-size: 14px;
  letter-spacing:  0.2rem;
  font-weight: bold;
  color: #fff;
  background-color: #0aa;
  padding: 20px 40px;
  border-radius: 5px;
  margin-top: 40px;
}
.Form-Btn:hover {
  opacity: 0.8;

}
.submit-btn_wrapper {
  text-align: center;
}

.Form-Btn:hover {
	opacity: 0.7;
	cursor: pointer;
}
.font-f color-p {
    margin-top: 20px;
}
.Form h2 span {
    margin-top: 20px;
}
.contact_privacy {
    text-align: center;
    margin-top: 80px; 
    font-size: 12px;
}
.contact_privacy a {
  color: #0aa;
}
.txt-center {
    margin-top: 10px;
}

/* 内容確認画面 */
 
.contact-title {
  min-width: 120px;
  font-family: serif;
  text-align: center;
  color: #252106;
  padding-top: 150px;
}
.contact-title span {
  font-size: 21px;
  letter-spacing: 0.4rem;
  color: #8a8a2c;
  display: block;
  padding-top: 40px;
}
.contact-title h2 {
  font-size: 36px;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 150px;
}

/* 送信完了画面 */
.toppage_back_btn {
    display: inline-flex;
    align-items: center;
    padding: 20px 40px;
    background-color: #0aa;
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 40px;
}

/* プライバシーポリシー */
.privacy_bg {
  background-color: #efefeb;
}
.privacy-title {
  max-width: 1000px;
  margin: 0 auto;
  /* min-width: 120px; */
  font-family: serif;
  /* text-align: center; */
  color: #252106;
  padding: 150px 40px;
}
.privacy-title span {
  font-size: 14px;
  letter-spacing: 0.4rem;
  color: #8a8a2c;
  display: block;
  padding-left: 3px;
}
.privacy-title h2 {
  font-size: 36px;
  margin: 0;
  padding-top: 10px;
}
.privacy_wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 110px 40px;
}
.privacy_inner {
  padding: 40px 0;
  border-bottom: 1px solid rgba(37,33,6,0.2);
}
.privacy_inner h2 {
  font-size: 28px;
  line-height: 2rem;
}
.privacy_inner p {
  padding-top: 20px;
  line-height: 2rem;
}
.privacy_inner dl {
  display: flex;
  padding-top: 0.5rem;
  letter-spacing: 0.2em;
}
.privacy_inner dt {
  width: 90px;
}
.privacy_inner li {
    padding-top: 0.5rem;
    letter-spacing: 0.2em;
}

/* 準備中 */
.preparation_bg {
  background-color: #efefeb;
  height: 100%;
}
.preparation_wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 150px 40px;
}
.img_preparation {
  text-align: center;
}
.img_preparation img {
  width: 100px;
  opacity: 0.3;
}
.preparation_inner h2 {
  padding: 40px 0;
}
.preparation_inner p {
  line-height: 2rem;
}
.footer_lower-fixed {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

/* ご利用運賃ページ */
.price_wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  padding-bottom: 110px;
}
.price_wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.price_wrapper th,
.price_wrapper td {
  width: 500px;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
}
.price_wrapper th {
  background: #efefeb;
  letter-spacing: 0.2rem;

}





/*  レスポンシブ --------------------------*/
/* header */
@media (min-width: 1085px) {
  .menu ,
  .hamburger {
    display: none;
  }

}
@media (max-width: 1085px) {

  /* ハンバーガーボタンのスタイル */
.hamburger {
  position: fixed;
  right: 40px;
  width: 30px;
  cursor: pointer;
  z-index: 20;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #8a8a2c;
  margin: 5px 0;
  transition: 0.4s;
}

/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* メニューのスタイル */
.menu {
  position: fixed;
  top: 0;
  right: -100%; /* 初期状態でメニューを画面の外に */
  /* right: 0; */
  width: 100%;
  height: 100vh;
  background-color: #efefeb;
  /* padding: 20px; */
  box-sizing: border-box;
  z-index: 5;
  transition: right 1s ease; /* スライドアニメーション */
  padding-top: 100px;
        padding-left: 40px;
}

/* メニューが表示される時 */
.menu.open {
  right: 0; /* メニューが表示される位置 */
}
.menu a {
    font-size: 14px;
  color: #252106;
  letter-spacing: 0.2rem;
  font-family: "dnp-shuei-nmincho-std", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.menu ul li {
  padding: 15px 0;
}
.menu .ContactForm_Button a {
  color: #efefeb;
}


  .header {
    align-items: center;
  }
  .Contact_Wrap, .nav {
    display: none;
  }
  #mainvisual {
    margin-top: 80px;
  }


  /* ご用命はこちらから〜ボタン */
  .sp-fixed {
  /* background-color: #efefef; */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: right;
  /* padding: 20px 20px; */
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  /* left: 0; */
}


.btn {
    text-align: center;
}
.sp-fixed .btn a {
  display: inline-block;
  background-color: #efefeb;
  color: #efefeb;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
  font-style: normal;
  letter-spacing: 0.1rem;
  line-height: 1.3;
  padding-top: 5px;
  background-color: #0aa;
  padding: 12px 15px;
  border-radius: 5px;

}
.sp-fixed img {
  width: 100%;
  height: 20px;
  margin-bottom: 6px;
}
.info-container {
  display: block;
}

/* 営業情報 */
  .info-row {
    padding-left: 0;
  }
  .info-content {
    padding-top: 20px;
  }

  /* サービス内容 */

  .service-grid {
    margin: 0 auto;
  }

  /* 採用情報 */
  .recruit_section{
    display: block;
  }
  .recruit-button {
    padding-bottom: 40px;
  }
  .recruit_image1 {
    width: 80%;
  }
  .recruit_image2 {
    width: 70%;
    top: 80%;
    left: 30%;
  }

  /* お問い合わせ */
  .contact-section {
    margin-top: 400px;
  }

  /* 上へ戻る */
  #pagetop {
    display: none;
  }

  .wanwan-section {
    position: relative;
    top: 85px;
  }
}/* max-width: 1085px */



@media (min-width: 1086px) {
  .nav_sp {
    display: none;
  }
  .info-row {
    padding-left: 0;
  }
.sp-fixed {
  display: none;
}


}


@media (max-width: 756px) {
  .hamburger {
  right: 10px;
}
  .header {
    padding: 20px 10px;
  }
  .text_jp {
    font-size: 16px;
  }
  #mainvisual h2 {
    padding-left: 10px;
    line-height: 1.6;
  }
  #mainvisual img {
    padding-left: 10px;
    width: 95%;
  }
  #mainvisual {
background-size: auto;
    background-position: bottom;  }

    ::-webkit-full-page-media, :root .sp-fixed .btn a {
    width: 100px;
}
.mainvisualbk {
  margin-top: 180px;
  padding: 20px 0;
  margin-left: unset;
}
  .about-title-vertical h2 {
    font-size: 24px;
  }
  .about-title-vertical span {
    font-size: 10px;
    padding-top: 2px;
    padding-left: 5px;
  }
  .about-title-vertical {
    left: 30px;
  }
  .about-box {
    padding-right: 10px;
    padding-left: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-left: 40px;
  }
  .about-box .text_jp {
    font-size: 18px;
  }
  .about-box p {
    font-size: 14px;
  }
  .img_mountain img {
    width: 300px;
  }

  .img_mountain {
    top: 50px;
  }
  .img_taxi img {
    width: 100px;
    padding-top: 100px;
  }
  .pc_none {
    display: none;
  }

  /* 営業情報 */
  .info-container{
    padding-left: 40px;
    padding-top: 100px;
  }
  .info-content {
    padding-top: 80px;
  }
  .info-title {
    padding-top: 0;
  }
  .info-title h2 {
    font-size: 24px;
  }
  .info-title span {
    font-size: 10px;
  }

  .info-row dd {
    font-size: 14px;
  }
  .info-row {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 0;
    margin-right: 10px;
  }
  .info-row {
    display: block;
  }
  .info-button {
    margin-bottom: 100px;
  }
  .sp_none {
    display: none;
  }
  .service-section {
    padding-bottom: 100px;
  }
  .service-grid {
    margin: 0 10px;
  }
  .service-card {
    gap: 40px;
  }
  .service-title {
    padding-top: 100px;
  }
  .service-title span {
    font-size: 10px;
  }
  .service-title h2 {
    font-size: 24px;
    padding-bottom: 100px;
  }
  .service-text h3 {
    font-size: 18px;
  }
  .service-text h3 span {
    font-size: 32px;
  }
  .service-text p {
    font-size: 14px;
  }
  .service-card {
    flex-direction: column;
    padding: 0 10px;
  }
  .service-card.reverse {
  flex-direction: column-reverse;
}

/* 採用情報 */
.recruit_section {
  display: block;
  margin: 0 auto;
  padding: 100px 10px;
}
.recruit_text-area span {
  font-size: 10px;
}
.recruit_text-area h2 {
  padding-bottom: 100px;
  font-size: 24px;
}
.recruit_text-area h3 {
  font-size: 21px;
}
.recruit_text-area p {
  font-size: 14px;
}
.recruit_image-area {
  padding-top: 40px;
}
.recruit_image2 {
  top: 80%;
}

/* お問い合わせ */
.contact-section {
  padding: 100px 10px;
  margin-top: 170px;
}
.contact-section span {
  font-size: 14px;
}
.contact-section h2 {
  font-size: 24px;
}
.contact-container {
  gap: 100px;
}

/* 会社概要 */
.company-section {
  padding: 100px 10px 0;
}
.company-section h2 {
  font-size: 24px;
}
.company-section h2 span {
  font-size: 10px;
}
.company-section table {
  margin-left: 40px;
}
.company-section th {
  padding-right: 40px;
}
.company-section th, .company-section td {
  font-size: 14px;
}
.company-image img {
  max-width: 80%;
}

/* 問い合わせフォーム */
.contact-title {
  padding-top: 100px;
}
.contact-title h2 {
  padding-bottom: 100px;
  line-height: 1.5;
}
.contact {
  padding: 100px 10px;
}
.Form_tittle h2  {
    margin-top: 80px;
}
.fot_logo img {
    width: 30%;
}
.Form {
	margin-top: 40px;
}
.Form-Item {
	padding-left: 14px;
	padding-right: 14px;
	padding-top: 16px;
	padding-bottom: 16px;
	flex-wrap: wrap;
}
.Form-Item-Label {
	max-width: inherit;
	display: flex;
	align-items: center;
	font-size: 14px;
}
.Form-Item-Label.isMsg {
	margin-top: 0;
}
.Form-Item {
	border-top: 1px solid #ddd;
  border-top: none;
	padding-top: 24px;
	padding-bottom: 24px;
	width: 100%;
	display: block;
	align-items: center;
}
.Form-Item:nth-child(5) {
	border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
	width: 100%;
	max-width: 248px;
	letter-spacing: 0.05em;
	font-size: 14px;
}
.Form-Item-Label.isMsg {
	margin-top: 8px;
	margin-bottom: auto;
	white-space: normal;
}
.Form-Item-Label-Required {
	border-radius: 4px;
	padding-top: 2px;
	padding-bottom: 2px;
	width: 32px;
	font-size: 10px;
}
.Form-Item-Label-Required {
	border-radius: 4px;
	padding-top: 4px;
	padding-bottom: 4px;
	width: 32px;
	font-size: 10px;
}
.Form-Item-Textarea {
	margin-top: 18px;
	margin-left: 0;
	height: 200px;
	flex: inherit;
}
.Form-Btn {
	margin-top: 40px;
  padding: 20px 40px;
	font-size: 14px;
}
.Form-Item-Input {
    margin-left: 0;
    margin-top: 5px;
}
.contact-title h2 {
  font-size: 24px;
}
.Form-Item p {
  /* padding-top: 20px; */
  line-height: 2;
}

/* プライバシーポリシー */
.privacy-title {
  padding: 100px 10px;
}
.privacy-title h2 {
  font-size: 24px;
}
.privacy_wrapper {
  padding: 90px 10px;
}
.privacy_inner h2 {
  font-size: 21px;
}
.privacy_inner p {
  font-size: 14px;
}
.privacy_inner dl,
.privacy_inner  ul {
  font-size: 14px;
}

/* 　公開準備中 */
.preparation_inner h2 {
  font-size: 24px;
}
.preparation_inner p {
  font-size: 14px;
}

/* 利用運賃 */
.price_wrapper {
  padding: 0 10px;
  font-size: 14px;
  margin-bottom: 60px;
}

}/* max-width: 756px */

@media (min-width: 757px) {
  .sp_add {
    display: none;
  }
}


/* わんわん */
.wanwan-section {
  background-color: #efefeb;
}

.wanwan-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 150px 40px;
}

.wanwan-image {
  margin-top: 60px;
  text-align: center;
}
.wanwan-image img {
  max-width: 300px;
  border-radius: 6px;
}

.wanwan-inner {
  position: relative;
  background-color: #efefeb;
  /* border-radius: 10px 0 0 10px; */
  flex: 1;
  font-size: 15px;
  line-height: 2;
  color: #252106;
  margin-left: 200px;
  padding-left: 200px;
  padding-right: 40px;
  padding-top: 150px;
  padding-bottom: 150px;
  margin-top: 150px;
}
.wanwan-inner .text_jp {
  font-size: 20px;
  letter-spacing: 0.4em;
  line-height: 2;
}
.wanwan-inner p {
  font-family: "dnp-shuei-nmincho-std", sans-serif;
  font-style: normal;
  font-size: 16px;
  padding-top: 40px;
  letter-spacing: 0.4rem;
  line-height: 2;
}

@media (max-width: 756px) {
  .wanwan-inner {
  padding-right: 0;
  padding-left: 10px;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-left: 20px;
  margin-top: 100px;
  }
  .wanwan-inner .text_jp {
    font-size: 18px;
  }
  .wanwan-inner p {
    font-size: 14px;
  }
  .wanwan-image img {
    max-width: 80%;
  }
}

