/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
}
/*----------ヘッダー----------*/
.header {
	height: 0px;
	width: 100%;
	box-shadow: 0 0 10px black;
    position: fixed;
	top: 0;
	z-index: 99;
	margin-bottom: 0px;
	background-color: #FFC517;
}
.header-left{
	float: left;
	margin-top: 0px;
}
.header-right{
	float: right;
	margin-top: 0px;
}
.clear{
	clear: both;
}
.header-logo{
	height: 50px;
	margin-top: 10px;
}
.header-right a {
	line-height: 80px;
	color: black;
    margin-left: 20px;
	font-size: 16px;
	padding: 11px 5px;
}
.container_header{
	width: 100%;
	padding: 0 0px;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFC517;
  margin-top: -30px;
}
.container_navi{
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}
/*----------ヘッダー----------*/
.menu{
	display: flex;
	justify-content: center;
	margin: 30px 0 0px 0;
	list-style: none;
}

.menu a{
	display: block;
  padding-top: 20px;
	padding-bottom: 0px;
  padding-left: 30px;
  padding-right: 30px;
	text-decoration: none;
	color: white;
}

.menu li{
	margin-bottom: 20px;
	color: white;
}

.menu li a{
	position: relative;
}


.menu li a:hover{
	
	color:#FFB100;
}

.menu li a::after{
	content:'';
	position:absolute;
	bottom:0;
	left:10%;
	width: 80%;
	height: 2px;
	background: #FFB100;
	transition: all .3s;
	transform: scale(0,1);
	transform-origin: left top;
}


.menu li a:hover::after{
	transform: scale(1,1);
}
/*-----スマホメニューバー-----*/

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: white;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #4C926F;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
	text-align: center;
}
.menu-content ul li  {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:white;
    text-decoration: none;
    padding: 30px 15px 30px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: red;
    transition: all 0.3s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
@media (min-width : 760px ){
	.hamburger-menu{
		display: none;
	}
}
@media (max-width : 760px ){
	.header-right{
		display: none;
	}
	.menu{
		display: none;
	}
}

/* ボタンエリア */
.contents01-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  max-width: 350px;
  margin: 0 auto 50px auto;
}

/* お問い合わせボタン */
.btn-primary {
  background-color: #ffffff;
  color: #2563eb;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

/* 利用シーンボタン */
.btn-secondary {
   background-color: #ffffff;
  color: #2563eb;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

/* 右側ボックス */
.hero-box {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}


.hero-box-text {
  margin-top: 1rem;
}

/*section01*/
.contents01-wrap01 {
  max-width: 550px;
  width: 100%;
  margin: 50px auto 0px auto;
  text-align: center;
}
.contents01-wrap02 {
  max-width: 550px;
  width: 100%;
  margin: 25px auto 25px auto;
  text-align: center;
}
.contents01-wrap01 h2 {
  font-size: 24px;
  
}

/* Section */
.section {
  padding: 70px 20px;
  background: #f5f7f9;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
}

/* Cards */
.card-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
/*---------レンタカーのページ---------*/
.rent-top-img_wrap h1{
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: white;
}
.rent-top-img_wrap{
	position: relative;
	background-image:url("../img/rent/top-img01.jpg");
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center top;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
	height: 500px;
	width: 100%;
	margin-top: 50px;
}
#rent01{
	margin-top: 100px;
}
#rent01 ul{
	max-width: 250px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	font-size: 1.2rem;
}
#rent01 h2{
	text-align: center;
}

.btn-wrap{
	max-width: 600px;
	margin: 25px auto;
}
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn-wrap-pc-sp {
  max-width: 435px;
  margin: 0 auto 20px;
}

a.btn-pc-sp {
  line-height: 1.4;

  width: 49.5%;
  padding: 1.25rem 0;

  color: #ffff;
}

a.btn--contact {
  font-size: 2rem;
  display: block;
  padding: 1.6rem 0 1.6rem 2.2rem;
  color: #fff;
  border-radius: 100vh;
  background: #eb6100;
  -webkit-box-shadow: 0 5px 0 #d25600;
  box-shadow: 0 5px 0 #d25600;
}

a.btn--contact i {
  font-size: 2rem;
}

a.btn--contact i.fa-position-left {
  font-size: 3rem;

  left: 2rem;
}

a.btn--contact .number {
  line-height: 1;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 2rem;
  letter-spacing: 0;
  color: #eb6100;
  border-radius: 0.5rem;
  background: #fff;
}

a.btn--contact:hover {
  color: #fff;
}
a.btn--tel {
  display: block;

  margin-top: 15px;
  padding: 1rem 0 1rem 2.2rem;

  color: #fff;
  border-radius: 100vh;
  background: #094;
  -webkit-box-shadow: 0 5px 0 #008039;
  box-shadow: 0 5px 0 #008039;
}
a.btn--tel i {
  font-size: 2rem;
}
a.btn--tel i.fa-position-left {
  font-size: 3rem;
  left: 2rem;
}
a.btn--tel .number {
  line-height: 1;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 2rem;
  letter-spacing: 0;
  color: #094;
  border-radius: 0.5rem;
  background: #fff;
}
a.btn--tel:hover {
  color: #fff;
}
.fa-position-left {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 1rem;
}
.fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}
.rent-box-right h3{
	border-bottom: solid 2px #707070;
	margin-bottom: 2px
}
#rent02{
	margin-top: 100px;
}
.rent-wrap{
	margin-top: 100px;
  max-width: 960px;
  width: 100%;
  margin: 100px auto 0px auto;
}
.rent-wrap h2 {
  font-size: 2rem;
  color: #2563eb;
  font-style: italic;
  font-weight: 700;
}
.rent-ttl{
	font-size: 1.5rem;
	margin-bottom: 20px;
}
.rent-ttl {
  position: relative;/*相対位置*/
  padding: 0.5em 0.5em 0.5em 0.5em;/*アイコン分のスペース*/
  line-height: 1.4;/*行高*/
color: #333333;
background: #FFF9E6;
border-top: dotted 1px #E0C15A;
border-bottom: dotted 1px #E0C15A;
}
.rent-box{
	max-width: 960px;
	margin: 0px auto;
}
.rent-box{
	display: flex;
	justify-content: space-between;
}
.rent-box-left{
    width: 35%;
}
.rent-box-left img{
	width: 100%;
}
.rent-box-right{
  max-width: 600px;
	width: 100%;
}
.rent-box-right img{
	width:  100%;
}
.rent-box-right table {
  width: 100%;              /* 横幅500px */
  border-collapse: collapse; /* 罫線を1本線にする */
  margin-top: 25px;
}

.rent-box-right th,
.rent-box-right td {
  border: 1px solid #000;    /* 罫線 */
  padding: 8px;
  width: 50%;
}

.rent-box-right th {
  background-color: #f5f5f5;
  text-align: left;
}
.rent-point p{
	border-bottom: solid 2px #707070;
	margin-bottom: 2px
}


/*-----レンタカー料金表-----*/
.rent-price{
	max-width: 960px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	width: 100%;
}
.rent-price-info{
	padding-top:5px;
	padding-left:0px;
}
.rent-price-info {
width: 100%;
}

.rent-price-info th,
.rent-price-info td {
border: 1px solid #ccc;
padding: 20px;
}

.rent-price-info th {
	font-weight: bold;
    background-color: #FEEDEB; 
	width: 50%;
}
.rent-price-info td {
	font-weight: bold;
	text-align: center;
	width: 50%;
}

.rent-price-info{
	border-collapse:  collapse; /* セルの線を重ねる */
}
@media (max-width : 760px ){
.hero {
  margin-top: 0px;
}
.container_navi {
  padding-bottom: 0px;
}
.header-logo{
	height: 50px;
	margin-top: 50px;
  width: 80%;
}
}
@media (max-width : 560px ){
	.rent-top-img_wrap h1{
	font-size: 1.5rem;
}
.hero {
  background-image: url("images/top-page-img01.jpg"); /* 写真のパス */
  margin-top: 60px;
}

/* コンテナ */
.hero-container {
  max-width: 1200px; /* max-w-6xl */
  margin: 0 auto;
  padding-top: 300px;
  padding-bottom: 10px;
  display: grid;
  gap: 5rem;
  align-items: center;
}

/* 見出し */
.hero-title {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  background-color: rgba(255, 0, 0, 0.8);
  padding-top: 5px;
  padding-bottom: 5px;
}
.hero {
  margin-top: 0px;
}
.container_navi {
  padding-bottom: 0px;
}
.rent-top-img_wrap{
	height: 300px;
	width: 100%;
	margin-top:60px;
}
	.rent-price{
	max-width: 380px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
}
	#rent01{
	margin-top: 25px;
}
#rent01 ul{
	max-width: 160px;
	font-size: 1rem;
}
#rent01 h2{
	text-align: center;
}
.btn-wrap{
	max-width: 380px;
	margin: 25px auto;
}
.btn,
a.btn,
button.btn {
  font-size: 1rem;
  font-weight: 300;
}
a.btn--contact {
  font-size: 1rem;

  display: block;

  padding: 1.6rem 0 1.6rem 0rem;

  color: #fff;
  border-radius: 100vh;
  background: #eb6100;
  -webkit-box-shadow: 0 5px 0 #d25600;
  box-shadow: 0 5px 0 #d25600;
}
	#rent02{
	margin-top: 50px;
}
	.rent-box{
	display: flex;
	flex-direction: column;
}
	.rent-box{
	max-width: 380px;
}
   .rent-box-left{
	width: 380px;
}
   .rent-box-left img{
	width: 100%;
}
   .rent-box-right{
	width:  380px;
}
}
#rent02 {
  margin-bottom: 100px;
}
/*-----企業概要-----*/
.box_company h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
.company-top-img_wrap h1{
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: black;
}
.title_company {
  margin-top: 25px;
}
.title_company{
	text-align: center;
	padding-bottom: 50px;
}
.box_company{
	max-width: 960px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 100px;
}
.box_company_info{
	padding-top:5px;
	padding-left:0px;
}
.box_company_info {
width: 100%;
}

.box_company_info th,
.box_company_info td {
border: 1px solid #ccc;
padding: 20px;
}

.box_company_info th {
	font-weight: bold;
  color: black;
    background-color:#FDF3C2;
}
.box_company_info{
	border-collapse:  collapse; /* セルの線を重ねる */
}
.company-section02{
	max-width: 720px;
	margin: 100px auto;
}
.company-section02 h2{
	text-align: center;
}
.company-section02 h3{
	text-align: center;
	padding-bottom: 50px;
}
.company-section03_ttl{
	text-align: center;
	margin: 0 auto 0px auto;
}
/*-----------Googleマップ----------*/
	#location{
		padding: 4% 0;
	}
	#location {
		max-width: 960px;
		justify-content: space-between;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
	}
	.location_map{
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}
	
	.map{
	margin-left: auto;
	margin-right: auto;
}
	 .map{
     height: 0;
     overflow: hidden;
     padding-bottom: 56.25%;
     position: relative;
}
     .map iframe {
     position: absolute;
     left: 0;
     top: 0;
     height: 100%;
     width: 100%;
}
.box_company-img {
  margin-top: 50px;
}
/* Contact */
/* =========================
  共通
========================= */
.section {
  padding: 4rem 0;
}

.container {
  max-width: 896px; /* max-w-4xl */
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* =========================
  CTAセクション
========================= */
.cta {
  background-color: #2563eb; /* blue-600 */
  color: #ffffff;
}

.cta-title {
  font-size: 1.875rem; /* text-3xl */
  font-weight: bold;
}

.cta-text {
  margin-top: 1rem;
}

.cta-button {
  display: inline-block;
  margin-top: 2rem;
  background-color: #ffffff;
  color: #2563eb;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

/* =========================
  お問い合わせフォーム
========================= */
.contact {
  background-color: #f9fafb; /* gray-50 */
}

.contact-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
}

.contact-form {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

.form-input,
.form-textarea {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}

.form-textarea {
  resize: vertical;
}

.form-button {
  background-color: #2563eb;
  color: #ffffff;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

/* =========================
  電話問い合わせ
========================= */
.phone-box {
  margin-top: 3rem;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.phone-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.phone-number {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.75rem;
  font-weight: bold;
  color: #2563eb;
  text-decoration: none;
}

.phone-note {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}


/* Footer */
footer {
  background-color:#FFC517;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 1rem;
}

/*-----------お問い合わせフォーム----------*/
.main_visual_contact{
	max-width:800px;
	margin:150px auto 50px auto;
}
.contact_wrap_all{
	max-width:800px;
	margin:100px auto 50px auto;
}
.top_title_contact{
text-align:center;
}
#cf-tbl{
width: 800px;
}

#cf-tbl table{
width: 100%;
border-collapse: collapse;
border: solid #CCC;
border-width: 1px;
color: #444;
}
#cf-tbl table tr th,
#cf-tbl table tr td{
padding: 3em;
text-align: left;
vertical-align: top;
border: solid #CCC;
border-width: 1px;
vertical-align: middle;
}
#cf-tbl table tr th{
width: 35%;
background: #eee;
}
@media screen and (max-width:768px){
#cf-tbl{
width: 90%;
}

#cf-tbl table,
#cf-tbl table tbody,
#cf-tbl table tr,
#cf-tbl table tr th,
#cf-tbl table tr td{
display: block;
}

#cf-tbl table{
width: 90%;
border-width: 0 0 1px 0;
}

#cf-tbl table tr th,
#cf-tbl table tr td{
width: 90%;
padding: 5% %;
}

#cf-tbl table tr td{
border-width: 0px 1px 0px 1px;
}
}
/*「必須」文字デザイン*/
.required{
font-size:.8em;
padding: 5px;
background: #F57500;
color: #fff;
border-radius: 3px;
margin-right: 5px;
}

/*「任意」文字デザイン*/
.optional{
font-size:.8em;
padding: 5px;
background: #000080;
color: #fff;
border-radius: 3px;
margin-right: 5px;
}

/* 入力項目を見やすく */
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
	width: 100%;
	padding: 8px 15px;
	margin-right: 10px;
	margin-top: 10px;
	border: 1px solid #d0d5d8;
	border-radius: 3px;
	background-color: #eff1f5;
}
textarea.wpcf7-form-control.wpcf7-textarea {
	height: 400px;
}

/* 「送信する」ボタン */
#cf7-btn {
    display: block;
    padding: 15px;
    width: 400px;
    background: #ffaa56;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 2px;
    margin: 15px auto 0
}
@media screen and (max-width:768px){
#cf7-btn {
width: 250px;
}
}

#cf7-btn:hover {
    background: #fff280;
    color: #ffaa56;
    border: 2px solid #ffaa56
}
/* エラーメッセージを見やすく */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
	color: red;
	font-weight: 600;
}
.contact_all_wrap{
	margin-top:100px;
max-width;960px;
margin-left:auto;
margin-right:auto;
}

/*-----------お問い合わせフォーム・スマホ----------*/
@media (max-width : 560px ){
#cf-tbl{
width: 380px;
}

#cf-tbl table{
width: 100%;
}
#cf-tbl table tr th,
#cf-tbl table tr td{
padding: 0.5em;
}
#cf-tbl table tr th{
width: 35%;
background: #eee;
}
@media screen and (max-width:768px){
#cf-tbl{
width: 100%;
}
#cf-tbl table{
width: 100%;
border-width: 0 0 1px 0;
}
#cf-tbl table tr th,
#cf-tbl table tr td{
width: 90%;
padding: 5% %;
}
#cf-tbl table tr td{
border-width: 0px 1px 0px 1px;
}
}
/*「必須」文字デザイン*/
.required{
font-size:.8em;
padding: 8px;
border-radius: 3px;
margin-right: 5px;
}
/*「任意」文字デザイン*/
.optional{
font-size:.8em;
padding: 5px;
border-radius: 3px;
margin-right: 5px;
}
/* 入力項目を見やすく */
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
	width: 100%;
	padding: 0px 0px;
	margin-right: 0px;
	margin-top: 0px;
	border: 1px solid #d0d5d8;
	border-radius: 3px;
}
textarea.wpcf7-form-control.wpcf7-textarea {
	height: 400px;
}
/* 「送信する」ボタン */
.submit-btn_wrap{margin:50px auto;}
.submit-btn {
    display: block;
    padding-left: 75px;
	padding-right: 75px;
	padding-top:10px;
	padding-bottom:10px;
    width: 100%;
    background: #E0E0E0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 20px;
    margin: 15px auto 20px;text-align:center;
}
@media screen and (max-width:768px){
.submit-btn {
width: 250px;
}
	.softwear__top--img--right {
		display:none;
	}
	
.submit-btn:hover {
    background: #c4c4c4;
    color: #ffaa56;
    border: 2px solid #c4c4c4;
}
.contact-top-title{max-width:1200px;margin:150px auto 100px auto;text-align:center;	
}
}
