@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/* CSS Document */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* グローバルスタイル */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #343434;
  line-height: 1.75;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
  letter-spacing: 0.05em;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
}

a {
  color: #000;
  text-decoration: none;
}

/* ページ全体のコンテナ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* ヘッダースタイル */
header {
  color: #fff;
  max-width: 1920px;
  margin: 0 auto;
}

header a:hover {
  opacity: 0.9;
}

.header_nav_flex {
  display: flex; /* コンテンツを横並びにする */
  justify-content: space-between; /* コンテンツの間隔を均等にする */
  align-items: center; /* コンテンツを垂直方向に中央寄せ */
  padding: 3rem 4rem;
}

.header_logo {
  color: #fff;
}

.header_logo a {
  display: block;
  color: #fff;
  padding: 2rem;
  /* background-color: #40c75a; */
  border-radius: 10px;
  font-size: 2rem;
}

.header_item {
  padding: 10px 20px;
  color: #008e44;
}

.header_item a {
  color: #008e44;
  font-size: 2.6rem;
}

.header_nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header_contact_btn {
  text-align: center;
  background-color: #008e44;
  border-radius: 20px;
  margin: 0 2rem;
  line-height: 1.5;
}

.header_contact_btn a {
  display: block;
  color: #ffee01;
  padding: 2rem 4rem;
  font-size: 2.6rem;
  line-height: 1.3;
}

/* ナビゲーションメニュー */
/* nav {
  background-color: #222;
} */

nav ul {
  list-style: none;
  padding: 0;
}

nav li {
  display: inline;
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

/* メインコンテンツエリア */
/* main {
  padding: 20px 0;
} */

section {
  padding: 8rem 0;
}

/* フッタースタイル */
footer {
  background-color: #3bae52;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  width: 100%;
  height: 436px;
  overflow: hidden;
}

.footer::after {
  content: "";
  top: 0;
  left: 50%; /* 左端からではなく中央から配置 */
  transform: translateX(-50%); /* 中央寄せ */
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: 0;
  border-left: 960px solid transparent; /* 左側の透明な部分 */
  border-right: 960px solid transparent; /* 右側の透明な部分 */
  border-bottom: 154px solid #ff0000; /* 下部の台形部分（赤色の例） */
}

.footer::after {
  content: "";
  top: calc(100% - 246px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200px; /* 台形全体の高さを調整 */
  position: absolute;
  bottom: 0;
  border-left: 960px solid transparent;
  border-right: 960px solid transparent;
  border-bottom: 154px solid #008e44;
  overflow: hidden;
}

.footer::before {
  content: "";
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 46px; /* 四角形の部分の高さを調整 */
  position: absolute;
  bottom: 0;
  background-color: #008e44; /* 四角形の背景色を設定 */
}

.footer_flex_wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1462px;
  margin: 0 auto;
  flex-direction: row;
}

.footer_flex_wrapper ul {
  display: flex;
  list-style: none;
  justify-content: flex-end;
}

.footer_flex_wrapper li {
  /* padding: 1rem 4rem; */
  border-right: 1px solid #fff;
  text-align: center;
  color: #fff;
  font-size: 2rem;
}

.footer_flex_wrapper li a {
  display: block;
  padding: 1rem 4rem;
}

.footer_flex_wrapper li:last-child {
  border-right: none;
  padding-right: 0;
}

.footer_flex_wrapper li a {
  color: #fff;
}

.footer_address {
  max-width: 904px;
  display: flex;
  justify-content: flex-end;
}

.footer_contents_right p {
  text-align: left;
  max-width: 792px;
  margin-top: 2rem;
}

.footer_business_btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

.footer_business_btn a {
  z-index: 2;
}

.footer_top_arrow_wrapper {
  text-align: center;
  margin: 2rem 0;
  z-index: 1;
  position: relative;
}

.footer_top_arrow_wrapper img {
  position: absolute;
  top: -35px;
  /* top: -55px; */
  /* top: 0; */
  right: 0;
  left: 0;
  margin: auto;
}

.copyright {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-weight: bold;
}

/* リンクスタイル */
a {
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

/* トップページ */
#ev_top_page .fee_flex_wrapper {
  margin: 0 auto 6rem;
}

#ev_top_page .top_guide_flex {
  margin-bottom: 8rem;
}

#ev_top_page #top_point_bg .grn_more_btn {
  margin-bottom: 8rem;
}

.top_fv_wrapper {
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}

#ev_top_page .top_fv_wrapper {
  /* padding: 0;
  margin: 0 auto; */
  padding: 0 0 2rem;
  border-bottom: 48px solid #008e44;
}

.top_fv_wrapper img {
  vertical-align: middle;
}
#ev_top_page.top_fv_wrapper {
  border-bottom: 30px solid #008e44;
}

#top_fv_bg_new {
  background: url(../img/top_fv_bg_new.png) no-repeat center;
  background-size: cover;
  max-width: 100%;
}
/* 
#top_fv_bg01 {
  background: url(../img/top_fv_bg.png) no-repeat center;
  background-size: cover;
  max-width: 100%;
}

#top_fv_bg_02 {
  background: url(../img/top_fv_bg_02.png) no-repeat center;
  background-size: auto;
} */

.slider {
  width: 100%;
  position: relative;
}

.slider_prev_btn {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 14.3%;
  /* left: 9.5%; */
  transform: translateY(-50%);
}

.slider_next_btn {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 14.3%;
  /* right: 9.5%; */
  transform: translateY(-50%);
}

.slider_prev_btn:hover,
.slider_next_btn:hover {
  cursor: pointer;
}

.slider .slick-slide {
  margin-right: 1vw !important;
  margin-left: 1vw !important;
}

.slider li {
  list-style: none;
}

.slider a {
  display: inline-block;
  max-width: 1300px;
  /* max-width: 1475px; */
}

.slick-slide img {
  margin: 0 auto;
}

.slick-dots {
  margin: auto;
  right: 0;
  left: 0;
}

.container1920px {
  max-width: 1920px;
  margin: 0 auto;
}

.top_ttl_wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6rem;
  text-align: center;
}

.top_grn_ttl {
  font-size: 5.4rem;
  color: #3bae52;
  /* 20231018: */
  /* font-family: "源ノ角ゴシック Regular", "源ノ角ゴシック"; */
}

.top_grn_ttl::after {
  content: attr(data-eng);
  font-size: 3rem;
  display: block;
  line-height: 1;
  color: #333;
  font-weight: normal;
  font-family: "Futura PT";
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: normal;
  text-align: center;
}

#top_guide_bg {
  background: url(../img/top_guide_bg.png);
}

#top_contact_wrapper .contact_heading_flex {
  margin-top: 4rem;
  margin-bottom: 12rem;
}

#top_contact_wrapper .contact_btn_flex {
  margin-bottom: 8rem;
}

/* 車種 */
.fee_flex_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1432px;
  margin: 0 auto;
  gap: 5px 1px;
}

.top_model_fee {
  padding-top: 0;
}

#ev_model_and_fee .fee_flex_wrapper {
  margin-top: 4rem;
}

#ev_model_and_fee .ev_txt_wrapper {
  max-width: 1008px;
  margin: 0 auto;
  padding-bottom: 0;
}

.fee_flex_wrapper a {
  /* color: #fff;
  padding: 9rem 0;
  background-color: #3bae52; */
  display: block;
  width: 100%;
}

/* .fee_flex_wrapper a:hover {
  opacity: 0.9;
} */

.fee_item {
  color: #fff;
  font-size: 2rem;
  width: calc(100% / 3 - 2px);
  /* max-height: 289px; */
  height: auto;
  text-align: center;
}

/* .fee_item a:hover {
  background-color: #5dcb73;
  opacity: 1;
  transition: 0.5s;
} */

.fee_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 3rem;
}

/* .fee_item:nth-child(1) a {
  border-radius: 18px 0 0 18px;
}

.fee_item:nth-child(3) a {
  border-radius: 0 18px 18px 0;
} */

/* .fee_item:nth-child(1) a {
  border-radius: 18px 0 0 0;
}

.fee_item:nth-child(3) a {
  border-radius: 0 18px 0 0;
}

.fee_item:nth-child(4) a {
  border-radius: 0 0 0 18px;
}

.fee_item:nth-child(6) a {
  border-radius: 0 0 18px 0;
} */

.top_guide_flex {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.guide_item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.guide_item::after {
  content: "";
  display: inline-block;
  background-size: cover;
  margin-right: 1rem;
}

#guide_item_01::after {
  width: 156px;
  height: 60px;
  background: url(../img/top_guide_icon01.png) no-repeat center;
}
#guide_item_02::after {
  width: 68px;
  height: 68px;
  background: url(../img/top_guide_icon02.png) no-repeat center;
}
#guide_item_03::after {
  width: 99px;
  height: 85px;
  background: url(../img/top_guide_icon03.png) no-repeat center;
}
.guide_item_anchor_01:hover #guide_item_01::after {
  background: url(../img/top_guide_icon01_hover.png) no-repeat center;
}
.guide_item_anchor_02:hover #guide_item_02::after {
  background: url(../img/top_guide_icon02_hover.png) no-repeat center;
}
.guide_item_anchor_03:hover #guide_item_03::after {
  background: url(../img/top_guide_icon03_hover.png) no-repeat center;
}

.top_guide_flex a {
  display: block;
  max-width: 855px;
  width: 100%;
  border: 5px solid #3bae52;
  padding: 5rem 0;
  margin: 0 auto;
  color: #3bae52;
  font-size: 3rem;
  font-weight: bold;
  background-color: #fff;
}

.top_guide_flex a:hover {
  border: 5px solid #4bc3e3;
  color: #4bc3e3;
}

.top_point_flex {
  display: flex;
  flex-wrap: wrap;
  max-width: 952px;
  /* 20231018: */
  margin: 0 auto 8rem;
  /* margin: 0 auto 6rem; */
  padding-top: 4rem;
  gap: 2rem;
}

.top_point_flex > div {
  width: calc(100% / 2 - 2rem);
}

.grn_more_btn {
  text-align: center;
}

.grn_more_btn a {
  /* 20231018: */
  max-width: 400px;
  /* max-width: 359px; */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* justify-content: center; */
  align-items: center;
  gap: 3rem;
  color: #fff;
  background-color: #3bae52;
  padding: 2.5rem 2rem 2.5rem 8rem;
  /* padding: 2.5rem 0; */
  border-radius: 25px;
  font-weight: bold;
  font-size: 3.2rem;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.16);
  line-height: 1.3;
}

.more_btn_icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding-left: 5px;
}

.more_btn_icon::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #3bae52;
}

.contact_heading_flex {
  display: flex;
  justify-content: center;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  /* padding-right: 10rem; */
}

#ev_feature .contact_heading_flex,
#ev_model_and_fee .contact_heading_flex {
  margin-bottom: 12rem;
}

.contact_heading_flex h3 {
  font-size: 5rem;
  /* font-family: "源ノ角ゴシック Regular", "源ノ角ゴシック"; */
}

.contact_btn_flex {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  padding: 0 2rem;
}

.btn_tel_item {
  width: calc(100% / 2 - 2rem);
  text-align: center;
}

.btn_top_txt {
  font-size: 3.6rem;
  font-weight: bold;
  color: #3bae52;
  /* text-align: center; */
  text-align: left;
  padding-left: 2em;
  /* padding-left: 1.5em; */
  line-height: 1.3;
}

.btn_tel_num {
  font-size: 6.5rem;
  /* font-size: 7.3rem; */
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn_hours {
  font-size: 3rem;
  text-align: left;
}

#btn_hours_left {
  padding-left: 8rem;
}

.btn_hours span {
  color: #4bc3e3;
  padding-left: 0.5em;
}

.btn_tel_num img {
  width: 14%;
  max-width: 81px;
}

.btn_tel_item a {
  display: block;
  max-width: 669px;
  line-height: 1.3;
  border: 1px solid #707070;
  border-radius: 45px;
  padding: 6rem 0;
  max-height: 305px;
  height: 100%;
  background-color: #fff;
}

.btn_contact_item {
  width: calc(100% / 2 - 2rem);
  border: 1px solid #707070;
  border-radius: 45px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-height: 305px;
  padding: 1rem 0 1rem 4rem;
  position: relative;
  background-color: #fff;
}

.btn_contact_item::after {
  content: "";
  position: absolute;
  top: 31%;
  right: -147px;
  width: 412px;
  height: 503px;
  background: url("../img/contact_woman.png") no-repeat center center;
  background-size: cover;
  transform: translate(0%, -50%);
}

.btn_contact_item .btn_top_txt {
  margin-bottom: 1rem;
}

.btn_contact_item .btn_top_txt {
  padding-left: 0.3em;
  text-align: left;
}

.btn_contact_item .grn_more_btn a {
  /* padding: 2.5rem 4rem; */
  padding: 2.5rem 2rem 2.5rem 4.5rem;
  text-align: left;
}

#top_point_bg {
  background: url(../img/top_point_bg.png) no-repeat center;
}

/* 4つの特徴 */
#feature_bg01 {
  background: url(../img/point_side_bg01.png) no-repeat left;
}

.feature_top_ttl {
  font-size: 3.6rem;
  margin: 4rem 0;
  text-align: center;
}

.top_fv_wrapper h1 {
  position: absolute;
  font-size: 5.4rem;
  color: #fff;
  top: 50px;
  left: 150px;
}

.top_point_flex_row {
  display: flex;
  max-width: 1475px;
  margin: 0 auto;
  gap: 2rem;
  align-items: center;
}

.time_line_wrapper {
  position: relative;
}

.time_line_wrapper::after {
  content: "";
  width: 19px;
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translateX(-50%);
}

.time_line_wrapper span {
  display: block;
  position: relative;
}

.time_line_wrapper span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 113px;
  height: 162px;
  background-size: cover;
  transform: translate(-50%, -50%);
}

.point_contents_flex {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  padding: 20rem 4rem 14rem;
}

#point_bg_01 .point_contents_flex {
  padding: 20rem 4rem 4rem;
}

.point_content_bottom {
  padding: 2rem 0 8rem;
  max-width: 1920px;
  margin: 0 auto;
}

#point_bg_01 .point_contents_flex,
#point_bg_02 .point_contents_flex {
  gap: 8rem;
}

#point_bg_03 .point_contents_flex,
#point_bg_04 .point_contents_flex {
  gap: 13rem;
}

.point_contents_flex img {
  z-index: 11;
  position: relative;
}

.point_contents_flex h2 {
  /* margin-bottom: 1em; */
  margin-bottom: 2rem;
  font-size: 3.6rem;
  position: relative;
  /* font-family: "源ノ角ゴシック Regular", "源ノ角ゴシック"; */
  /* font-family: "Noto Sans Japanese", sans-serif; */
  line-height: 1.3;
}

.point_contents_flex p {
  font-size: 2rem;
  /* 20231018: */
  font-weight: normal;
  margin-bottom: 1em;
}

.point_contents_flex > div {
  width: 50%;
}

.point_contents_flex > div:first-child {
  padding-left: 2rem;
}

.point_contents_flex h2::after {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  width: 127px;
  height: 127px;
  background-size: cover;
  transform: translate(-100%, 0);
}

.point_item_left span {
  padding-top: 2rem;
  font-size: 1.6rem;
  line-height: 1;
}

/* タイムラインの長さ */
#time_line01::after {
  background-color: #4bc3e3;
  z-index: 4;
  height: 210px;
}
#time_line02::after {
  background-color: #9dc93a;
  z-index: 3;
  height: 1872px;
}
#time_line03::after {
  background-color: #fdd000;
  z-index: 2;
  height: 2738px;
}
#time_line04::after {
  background-color: #008e44;
  z-index: 1;
  height: 3784px;
}

/* コンセントの位置 */
#time_line01 span::after {
  background: url("../img/socket01.png") no-repeat center center;
  z-index: 6;
  top: 240px;
}
#time_line02 span::after {
  background: url("../img/socket02.png") no-repeat center center;
  z-index: 5;
  top: 1760px;
}
#time_line03 span::after {
  background: url("../img/socket03.png") no-repeat center center;
  z-index: 4;
  top: 2652px;
}
#time_line04 span::after {
  background: url("../img/socket04.png") no-repeat center center;
  z-index: 3;
  top: 3671px;
}

/* ポイント数字 */
#point_bg_01 h2::after {
  background: url("../img/point_num01.png") no-repeat center center;
  left: -15px;
}
#point_bg_02 h2::after {
  background: url("../img/point_num02.png") no-repeat center center;
  left: -15px;
}
#point_bg_03 h2::after {
  background: url("../img/point_num03.png") no-repeat center center;
  left: -20px;
}
#point_bg_04 h2::after {
  background: url("../img/point_num04.png") no-repeat center center;
  left: -20px;
}

/* ポイント背景 */
#point_bg_01 {
  background-color: #d7f2f9;
  z-index: 5;
  position: relative;
}
#point_bg_02 {
  background-color: #e9f3d3;
  margin-top: 16rem;
  z-index: 4;
  position: relative;
}
#point_bg_03 {
  background-color: #fff5c7;
  margin-top: 16rem;
  z-index: 3;
  position: relative;
}
#point_bg_04 {
  background-color: #c7e6d6;
  margin-top: 16rem;
  z-index: 2;
  position: relative;
}

#point_bg_03 .point_contents_flex,
#point_bg_04 .point_contents_flex {
  flex-direction: row-reverse;
}

#point_bg_03 .point_contents_flex {
  align-items: flex-end;
}

#point_bg_01::after {
  content: "";
  position: absolute;
  background: url(../img/point_side_bg02.png);
  width: 400px;
  height: 976px;
  bottom: -70%;
  right: 0;
  z-index: 10;
}
#point_bg_02::after {
  content: "";
  position: absolute;
  background: url(../img/point_side_bg03.png);
  width: 443px;
  height: 976px;
  bottom: -70%;
  left: 0;
  z-index: 10;
}
#point_bg_03::after {
  content: "";
  position: absolute;
  background: url(../img/point_side_bg04.png);
  width: 419px;
  height: 976px;
  bottom: -70%;
  right: 0;
  z-index: 10;
}
#point_bg_04::after {
  content: "";
  position: absolute;
  background: url(../img/point_side_bg05.png);
  width: 246px;
  height: 976px;
  bottom: -70%;
  left: 0;
  z-index: 10;
}

/* 車種と料金 */
.fee_rental_container {
  max-width: 1602px;
  margin: 0 auto;
}

.bg_dark {
  background-color: #333;
  display: inline-block;
  position: relative;
  width: 100%;
}

.bg_dark p {
  color: white;
  font-size: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#rental_contents_03 img {
  opacity: 0.7;
}

.border_ttl_wrapper {
  border-left: 8px solid #3bae52;
  border-bottom: 1px solid #707070;
  max-width: 588px;
}

#ev_model_and_fee .border_ttl_wrapper {
  max-width: 100%;
}

.border_ttl_wrapper h2 {
  font-size: 5rem;
  color: #3bae52;
  border-left: 8px solid #93d2a0;
  padding-left: 5rem;
  padding-bottom: 1rem;
}

.fee_contents_item {
  border-top: 42px solid #3bae52;
  margin: 10rem 0 15rem;
  display: inline-block;
  max-width: 942px;
  width: 100%;
}

.fee_contents_item h3 {
  text-align: left;
  color: #707f89;
  margin: 3rem 0 1rem;
  font-size: 3rem;
}

.fee_contents_item h3 span {
  font-size: 2rem;
}

.fee_contents_item .left_column {
  background-color: #efefef;
  text-align: center;
  font-weight: normal;
  padding: 1rem 1.8rem;
  width: 45%;
}

.fee_contents_item td {
  border-top: 1px solid #707070;
  padding: 1rem 1.8rem;
  padding-left: 3rem;
  text-align: center;
  width: 55%;
  font-weight: bold;
}

.caution_txt {
  text-align: left;
  font-size: 1.5rem;
  color: #333;
}

.fee_contents_wrapper {
  text-align: center;
}

.fee_contents_wrapper img {
  border-right: 1px solid #707070;
  border-left: 1px solid #707070;
  border-bottom: 1px solid #707070;
  vertical-align: bottom;
  width: 100%;
  max-width: 942px;
}

.fee_btm_flex {
  display: flex;
  flex-wrap: wrap;
}

.btm_item {
  /* width: 25%; */
  border-left: 1px solid #707070;
  border-bottom: 1px solid #707070;
}

.btm_item span {
  font-size: 2.5rem;
}

.btm_item:last-child {
  border-right: 1px solid #707070;
}

.btm_item:nth-child(3) {
  border-right: 1px solid #707070;
}

.btm_item_ttl {
  font-size: 3rem;
  font-weight: bold;
  background-color: #3bae52;
  color: #fff;
}

.btm_item_fee {
  font-size: 3rem;
  font-weight: bold;
  color: #3bae52;
}

#btm_item_top {
  width: calc(100% / 3);
}

#btm_item_bottom {
  width: calc(100% / 2);
}

#fee_contact_bg {
  background-color: #e3f3ea;
}

#ev_feature .btn_tel_item a,
#ev_feature .btn_contact_item {
  background-color: #fff;
}

#ev_feature .contact_btn_flex {
  padding: 0 2rem 6rem;
}

/* 予約状況 */
#reservation_bg01 {
  position: relative;
}

#reservation_bg01::after {
  content: "";
  position: absolute;
  background: url(../img/reservation_bg01.png);
  width: 293px;
  height: 980px;
  top: -200px;
  right: 0;
  z-index: 10;
}

#reservation_bg01 p {
  font-size: 2rem;
}

.reservation_container {
  max-width: 1246px;
  margin: 0 auto;
}

.reservation_flow_top_img_wrapper {
  text-align: center;
  border-bottom: 10px solid #3bae52;
}

/* .reservation_flow_top_img_wrapper img {
  padding: 6rem 0;
  margin-bottom: 4rem;
} */

.reservation_flow_wrapper {
  padding-top: 12rem;
  /* padding-top: 6rem; */
}

/* 20231018: */
/* .reservation_flow_wrapper img {
  margin-bottom: 6rem;
} */

.reservation_flow_nav_flex {
  list-style: none;
  display: flex;
  gap: 4.5rem;
  justify-content: center;
  /* position: relative; */
  flex-direction: row;
  padding: 6rem 0;
  margin-bottom: 4rem;
}

.reservation_flow_nav_flex a {
  display: block;
}

.reservation_flow_nav_flex li {
  position: relative;
}

.reservation_flow_nav_flex li::after {
  position: absolute;
  content: "";
  background: url(../img/reservation_flow_arrow.png) no-repeat center;
  width: 44px;
  height: 42px;
  top: 37%;
  right: -44px;
}

.reservation_flow_nav_flex li:last-child:after {
  display: none;
}

.reservation_flow_nav_flex li::after {
  position: absolute;
  content: "";
  background: url(../img/reservation_flow_arrow.png) no-repeat center;
  width: 44px;
  height: 42px;
  top: 37%;
}

.reservation_flow_bottom_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 6rem;
  max-width: 1149px;
}

.reservation_top_txt {
  max-width: 1184px;
  margin: 0 auto;
  padding: 5rem 0;
  font-weight: normal;
}

/* .reservation_flow_wrapper {
  margin-bottom: 6rem;
} */

.reservation_flow_contents {
  background-color: #f7fcf9;
  /* background-color: #e3f3ea; */
}

.reservation_flow_contents h2 {
  font-size: 3.6rem;
  background-color: #3bae52;
  color: #fff;
  margin-bottom: 3rem;
  padding-left: 12rem;
  position: relative;
}

.reservation_flow_contents h2::after {
  position: absolute;
  content: "";
  width: 182px;
  height: 182px;
  top: 0;
  left: 0;
  top: -65px;
  left: -34px;
  transform: scale(0.7);
}

iframe {
  width: 100%;
  aspect-ratio: 1/0.273;
}

/* stepアイコン */
.reservation_flow_contents:nth-child(1) h2:after {
  background: url(../img/reservation_flow_step01.png) no-repeat center;
}
.reservation_flow_contents:nth-child(2) h2:after {
  background: url(../img/reservation_flow_step02.png) no-repeat center;
}
.reservation_flow_contents:nth-child(3) h2:after {
  background: url(../img/reservation_flow_step03.png) no-repeat center;
}
.reservation_flow_contents:nth-child(4) h2:after {
  background: url(../img/reservation_flow_step04.png) no-repeat center;
}
.reservation_flow_contents:nth-child(5) h2:after {
  background: url(../img/reservation_flow_step05.png) no-repeat center;
}
.reservation_flow_contents:nth-child(6) h2:after {
  background: url(../img/reservation_flow_step06.png) no-repeat center;
}

.reservation_flow_container {
  /* padding: 0 10rem 10rem; */
  border-left: 15px dotted #008e44;
  margin-left: 5rem;
  padding: 0 5rem 10rem;
}

/* 例外処理 */
#flow_01.reservation_flow_contents .grn_more_btn a {
  background-color: #008e44;
  width: 546px;
  height: 94px;
  max-width: none;
}
#flow_04 .reservation_flow_container,
#flow_05 .reservation_flow_container {
  padding: 0 5rem 3rem;
}
#flow_06 .reservation_flow_container {
  border-left: none;
}
#flow_06 .ev_txt_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding-bottom: 0;
}
#flow_06 .ev_txt_wrapper:nth-child(2) {
  padding: 0;
}
#flow_06 .ev_txt_wrapper > div:first-child {
  width: 55%;
}
#flow_06 .ev_txt_wrapper > div:nth-child(2) {
  width: 45%;
}
#flow_06 .ev_txt_wrapper > div:nth-child(2) {
  text-align: center;
}
#flow_06 .ev_txt_wrapper img,
.reservation_flow_wrapper .flow_img_box img {
  margin-bottom: 0;
}

.ev_txt_normal {
  font-weight: normal;
  margin-top: 1rem;
}

#reservation_contact {
  padding-top: 0;
  margin-bottom: 8rem;
  margin-top: 8rem;
}

.flow_img_box {
  text-align: right;
  margin-top: 4rem;
}

.ev_txt_wrapper {
  padding: 5rem 0;
  font-size: 2rem;
  font-weight: bold;
  max-width: 893px;
  margin: 0 auto;
}

.ev_txt_wrapper span {
  color: #ff2323;
}

.ev_contents_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-direction: row;
}
/* 
.btn_tel_item a {
  padding: 6rem 0;
} */

.reservation_flow_container .btn_tel_num {
  font-size: 5rem;
}

.reservation_flow_container .btn_top_txt {
  font-size: 2.5rem;
}

.reservation_flow_container .btn_tel_num img {
  margin-bottom: 0;
}

.reservation_flow_container .btn_hours {
  font-size: 2.1rem;
  padding-left: 5rem;
}

.reservation_flow_container .grn_more_btn a {
  max-width: 404px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  color: #fff;
  background-color: #008e44;
  /* background-color: #3bae52; */
  padding: 2.5rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 3.2rem;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.16);
  line-height: 1.3;
}

#reservation_access {
  background-color: #e3f3ea;
  position: relative;
}

#reservation_access::after {
  content: "";
  position: absolute;
  background: url(../img/reservation_bg02.png);
  width: 373px;
  height: 976px;
  bottom: -70%;
  left: 0;
  z-index: 10;
}

#reservation_access .ev_txt_wrapper {
  margin: 0;
  padding-bottom: 2rem;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  width: 100%;
  border-bottom: 1px solid #707070;
  /* font-weight: normal; */
}

th,
td {
  border-top: 1px solid #707070;
  padding: 1.8rem;
  padding-left: 3rem;
  text-align: left;
}

.left_column {
  background-color: #fcf7ef;
  text-align: center;
  font-weight: bold;
  padding: 1.8rem;
}

.about_company_flex {
  display: flex;
  margin-top: 8rem;
  margin-bottom: 8rem;
  gap: 6rem;
}

.reservation_container {
  position: relative;
  z-index: 50;
  padding: 0 4rem;
}

.about_company_flex > div {
  width: 50%;
}

.about_company_flex > div:first-child {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#about_company_wrapper .border_ttl_wrapper {
  background-color: #fff;
}

.reservation_form_container {
  max-width: 1379px;
  margin: 0 auto;
  background-color: #fff;
}

#reservation_favor .border_ttl_wrapper {
  max-width: 100%;
}

/* 車両予約フォーム */
#contact .top_fv_wrapper {
  padding-bottom: 0;
}

#reservation_form_bg {
  background-color: red;
}

#reservation_form_bg {
  background: url(../img/reservation_form_bg.png);
  position: relative;
}

#reservation_form_bg::after {
  content: "";
  position: absolute;
  background: url(../img/contact_bg01.png);
  width: 310px;
  height: 980px;
  bottom: -30%;
  right: 0;
  z-index: 10;
}

label {
  display: block;
  margin-bottom: 10px;
  color: #3bae52;
  font-weight: bold;
  font-size: 2rem;
}

select#car {
  width: 464px;
}

form img {
  vertical-align: middle;
  padding-left: 1rem;
}

input#departureDate {
  width: 262px;
}

input#returnDate {
  width: 262px;
}

input[type="text"],
input[type="email"],
input[type="date"],
select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
input[type="submit"] {
  background-color: #3bae52;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  width: 180px;
  font-weight: bold;
  font-size: 2rem;
}
input[type="submit"]:hover {
  opacity: 0.9;
}

.form_container {
  max-width: 873px;
  margin: 5rem auto;
  padding-top: 3rem;
}

#contact .border_ttl_wrapper {
  max-width: 588px;
}
.reservation_form_container {
  padding: 5rem;
  z-index: 15;
  position: relative;
}

#contact_form_bg {
  background-color: #e3f3ea;
  position: relative;
}

#contact_form_bg::after {
  content: "";
  position: absolute;
  background: url(../img/contact_bg02.png);
  width: 373px;
  height: 976px;
  bottom: -10%;
  left: 0;
  z-index: 10;
}

#contact_form_bg .border_ttl_wrapper h2 {
  color: #4bc3e3;
  border-left: 8px solid #9addee;
}

#contact_form_bg .border_ttl_wrapper {
  border-left: 8px solid #4bc3e3;
}

#contact_form_bg label {
  color: #333;
}

#contact_form_bg input[type="submit"] {
  background-color: #4bc3e3;
}

textarea {
  width: 100%;
  /* width: 873px;  */
  height: 244px;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#ev_feature .top_fv_wrapper {
  padding-bottom: 0;
}

/* .feature_bg {
  background: url(../img/feature_bg.png) no-repeat center center;
  background-size: cover;
  z-index: 10;
  position: relative;
} */

#top_fv_bg_03 {
  background: url(../img/top_fv_bg_03.png) no-repeat center center;
  background-size: auto;
}

.dpn1110 {
  display: block;
}

.dpb768 {
  display: none;
}

.dpn768 {
  display: block;
}

.footer_business_btn.sp_disp_none img {
  display: flex;
  max-width: 300px;
}

.footer_business_btn.sp_disp img {
  display: none;
}

.hamburger_nav {
  display: none;
}

.footer_contents_right ul,
.footer_contents_right a {
  display: flex;
}

.hamburger_nav ul li {
  margin-right: 20px;
}
/* 
.hamburger_nav .menu-icon {
  color: #008e44;
  font-size: 4rem;
} */

.openbtn1 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  background: #008e44;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

/*ボタン内側*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/
/* 
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
} */

.btn-block {
  width: 200px;
  padding: 30px;
}

.point_item_right {
  text-align: center;
}

#point_bg_01 .point_contents_flex {
  align-items: center;
}

/* サンクスページ */
.thanks_txt_container {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.thanks_txt_container h1 {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 1em;
}

.thanks_txt_container p {
  font-size: 2rem;
}

.thanks_txt_container .grn_more_btn a {
  max-width: 404px;
  margin: 4rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  color: #fff;
  background-color: #3bae52;
  padding: 2.5rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 3.2rem;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.16);
  line-height: 1.3;
}

/* SP */
@media screen and (max-width: 1650px) {
  .time_line_wrapper::after {
    display: none;
  }

  .time_line_wrapper span::after {
    display: none;
  }
}
@media screen and (max-width: 1400px) {
  .header_item a {
    font-size: 2rem;
  }

  .header_contact_btn a {
    font-size: 2rem;
  }
  .contact_heading_flex h3 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 1340px) {
  .header_nav_flex {
    padding: 2rem;
  }

  #point_bg_01::after,
  #point_bg_02::after,
  #point_bg_03::after,
  #point_bg_04::after {
    display: none;
  }

  .point_contents_flex h2::after {
    top: -136px;
    left: -60px;
    width: 127px;
    height: 127px;
    background-size: cover;
    transform: scale(0.8);
  }

  .btn_contact_item {
    /* align-items: center; */
    padding: 1rem;
  }
  .footer_flex_wrapper li a {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 1340px) {
  .btn_tel_num {
    font-size: 6rem;
  }
}

@media screen and (max-width: 1300px) {
  /* フッター */
  .footer_flex_wrapper li a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.6rem;
  }

  .header_nav {
    gap: 1rem;
  }

  .header_item {
    padding: 10px 10px;
  }

  .btn_contact_item {
    align-items: center;
  }

  .btn_contact_item::after {
    display: none;
  }

  .contact_btn_flex {
    flex-direction: column;
    padding: 2rem 0 0;
    align-items: center;
  }
}

@media screen and (max-width: 1100px) {
  section {
    padding: 6rem 4rem;
  }

  .border_ttl_wrapper h2 {
    font-size: 4rem;
  }

  #ev_top_page .fee_flex_wrapper {
    margin-bottom: 4rem;
  }

  #ev_top_page .top_guide_flex {
    margin-bottom: 4rem;
  }

  #ev_top_page #top_point_bg .grn_more_btn {
    margin-bottom: 4rem;
  }

  .dpn1110 {
    display: none;
  }

  /* .footer_top_arrow_wrapper img {
    top: 85px;
  } */

  #ev_feature .contact_heading_flex,
  #ev_model_and_fee .contact_heading_flex {
    margin-bottom: 2rem;
  }

  /* ヘッダー */
  #ev_top_page .top_fv_wrapper {
    margin-top: 15rem;
    border-bottom: none;
  }

  #ev_feature .top_fv_wrapper,
  #ev_model_and_fee .top_fv_wrapper,
  #ev_reservation .top_fv_wrapper,
  #contact .top_fv_wrapper {
    margin-top: 12rem;
  }

  .top_fv_wrapper h1 {
    font-size: 2.4rem;
  }

  .header_nav_flex {
    position: fixed; /* ヘッダーを固定 */
    width: 100%; /* ヘッダーを幅100%に設定 */
    top: 0; /* 画面上端に固定 */
    left: 0;
    background-color: #fff;
    z-index: 1000;
    padding: 0 4rem;
  }

  .hamburger_nav ul li {
    margin-right: 0;
  }

  .header_nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    text-align: center;
    z-index: 1;
  }

  .header_logo img {
    max-width: 200px;
    height: auto;
  }

  .hamburger_nav {
    display: block;
  }

  .hamburger_nav .menu-icon {
    display: block;
  }

  .hamburger_nav ul {
    display: none;
    flex-direction: column;
    background-color: #444;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
  }

  .hamburger_nav ul.active {
    display: flex;
    z-index: 100;
    margin-top: 6rem;
    background-color: #008e44;
    padding: 2rem 0;
  }

  ul#menuList.active a {
    display: block;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    font-size: 2rem;
  }

  /* フッター */
  .footer_business_btn.sp_disp_none img {
    display: none;
  }

  .footer_business_btn.sp_disp img {
    display: block;
    max-width: 280px;
    height: auto;
  }

  .footer_business_btn.sp_disp {
    justify-content: center;
  }

  footer {
    height: 520px;
  }

  .contact_btn_flex {
    flex-direction: column;
    padding: 2rem 0 0;
    align-items: center;
  }

  .btn_top_txt {
    font-size: 2rem;
    font-weight: bold;
    color: #3bae52;
    text-align: center;
    padding-left: 0;
    line-height: 1.3;
  }

  .btn_tel_item a {
    display: block;
    max-width: 500px;
    /* max-width: 669px; */
    line-height: 1.3;
    border: 1px solid #707070;
    border-radius: 25px;
    padding: 1rem 0;
    max-height: 305px;
    margin: 0 auto;
  }

  .btn_tel_num {
    font-size: 3rem;
  }

  .btn_hours {
    font-size: 2rem;
    text-align: center;
  }

  #btn_hours_left {
    padding-left: 0;
  }

  .btn_hours span {
    padding-top: 1rem;
  }

  .btn_contact_item {
    align-items: center;
    padding: 1rem;
    border-radius: 25px;
    max-width: 500px;
  }

  .btn_contact_item .grn_more_btn a {
    padding: 2rem;
    gap: 1rem;
    font-size: 1.8rem;
  }

  .point_contents_flex > div {
    width: 100%;
  }

  .point_contents_flex > div:first-child {
    padding-left: 0;
  }

  .contact_heading_flex h3 {
    font-size: 3rem;
  }

  .footer_address {
    display: inline-block;
  }

  .footer_contents_right p {
    text-align: center;
  }

  /* フッター */
  .footer_flex_wrapper {
    justify-content: center;
    flex-direction: column;
    padding: 0 2rem;
  }

  .footer_contents_right ul,
  .footer_contents_right a {
    display: none;
  }

  #feature_bg01 {
    background: none;
    padding-bottom: 0;
  }

  .feature_top_ttl {
    font-size: 2.4rem;
  }

  .point_contents_flex {
    flex-direction: column;
    padding: 3rem 2rem;
  }

  #point_bg_03 .point_contents_flex,
  #point_bg_04 .point_contents_flex {
    flex-direction: column;
  }

  #point_bg_01 .point_contents_flex,
  #point_bg_02 .point_contents_flex,
  #point_bg_03 .point_contents_flex,
  #point_bg_04 .point_contents_flex {
    gap: 2rem;
  }

  .point_contents_flex h2::after {
    top: -65px;
    /* left: -85px; */
    width: 127px;
    height: 127px;
    background-size: cover;
    transform: scale(0.8);
  }

  #point_bg_01 h2::after,
  #point_bg_02 h2::after,
  #point_bg_03 h2::after,
  #point_bg_04 h2::after {
    left: -62px;
    transform: scale(0.7);
  }

  .point_contents_flex p {
    font-size: 1.6rem;
  }

  .point_contents_flex h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    padding-left: 5rem;
  }

  #point_bg_02,
  #point_bg_03,
  #point_bg_04 {
    margin-top: 4rem;
  }

  .point_content_bottom {
    padding: 0 0 4rem;
  }

  #point_bg_01 .point_item_right img {
    margin-top: 0;
  }

  #point_bg_01 .point_contents_flex {
    padding: 3rem 2rem;
  }

  .footer::after {
    top: calc(100% - 200px);
  }

  .footer_top_arrow_wrapper img {
    top: 15px;
  }

  /* 予約状況 */
  .about_company_flex {
    flex-direction: column;
    align-items: center;
    gap: 6rem;
  }

  #reservation_contact {
    margin-bottom: 0;
    margin-top: 0rem;
  }

  .ev_contents_flex {
    flex-direction: column;
  }

  .reservation_flow_container .grn_more_btn a {
    font-size: 1.8rem;
    padding: 2rem;
    gap: 2rem;
  }

  .reservation_flow_contents h2 {
    font-size: 2.4rem;
    background-color: #3bae52;
    color: #fff;
    margin-bottom: 0;
    padding-left: 6rem;
    position: relative;
  }

  .reservation_flow_contents h2::after {
    transform: scale(0.5);
    left: -67px;
    top: -72px;
  }

  #flow_01.reservation_flow_contents .grn_more_btn a {
    height: auto;
    max-width: 400px;
    width: 100%;
  }

  #ev_reservation .btn_tel_item a {
    display: block;
    max-width: 500px;
    line-height: 1.3;
    border: 1px solid #707070;
    border-radius: 25px;
    padding: 1rem 0;
    max-height: 305px;
    margin: 0 auto;
    width: 100%;
  }
  .reservation_flow_bottom_flex {
    flex-direction: column;
  }

  .reservation_flow_container {
    border-left: 10px dotted #008e44;
    margin-left: 2rem;
    padding: 0 2rem 5rem 2rem;
  }

  #flow_04 .reservation_flow_container,
  #flow_05 .reservation_flow_container {
    padding: 0 2rem 5rem 2rem;
  }

  .reservation_flow_nav_flex {
    flex-wrap: wrap;
    gap: 4rem;
    flex-direction: column;
  }

  .reservation_flow_nav_flex a {
    display: block;
    max-width: fit-content;
    margin: 0 auto;
  }

  .reservation_flow_nav_flex li {
    width: 100%;
  }

  .reservation_flow_nav_flex li::after {
    position: absolute;
    content: "";
    background: url(../img/reservation_flow_arrow_down.png) no-repeat center;
    width: 42px;
    height: 46px;
    /* top: 12%; */
    bottom: -158px;
    left: 0;
    right: 0;
    margin: auto;
  }

  .reservation_flow_container .btn_top_txt {
    font-size: 2rem;
  }

  .reservation_flow_container .btn_tel_num {
    font-size: 2.4rem;
  }

  .reservation_flow_container .btn_hours {
    font-size: 1.8rem;
  }

  .reservation_flow_wrapper img {
    margin-bottom: 0;
  }

  .ev_txt_wrapper {
    font-size: 1.6rem;
  }

  #flow_06 .ev_txt_wrapper {
    gap: 2rem;
    flex-direction: column;
  }

  #flow_06 .ev_txt_wrapper > div:first-child {
    width: 100%;
  }

  iframe {
    width: 100%;
    aspect-ratio: 1/1;
  }

  /* サンクスページ */
  .thanks_txt_container {
    max-width: 800px;
    margin: 12rem auto 4rem;
    text-align: center;
  }

  .thanks_txt_container h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1em;
  }

  .thanks_txt_container p {
    font-size: 1.6rem;
  }

  .thanks_txt_container .grn_more_btn a {
    max-width: 280px;
    margin: 6rem auto 0;
    padding: 1.5rem;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  /* グローバル */
  section {
    padding: 4rem 2rem;
  }

  .dpb768 {
    display: block;
  }

  .dpn768 {
    display: none;
  }

  #top_fv_bg_new {
    background-size: contain;
  }

  /* .slider {
    padding: 0 2rem;
  } */

  .slider_prev_btn,
  .slider_next_btn {
    display: none !important;
  }

  /* ヘッダー */
  .header_logo img {
    /* transform: scale(0.6);
    transform-origin: left center;
    display: inline-block; */
    max-width: 160px;
    height: auto;
  }

  /* フッター */
  .footer_business_btn.sp_disp_none img {
    display: none;
  }

  .footer_business_btn.sp_disp img {
    display: block;
  }

  .footer_business_btn.sp_disp {
    justify-content: center;
  }

  footer {
    height: 470px;
    margin-top: 4rem;
  }

  .border_ttl_wrapper h2 {
    font-size: 2.4rem;
    padding-left: 2rem;
    padding-bottom: 0.5rem;
  }

  .top_fv_wrapper h1 {
    font-size: 2.4rem;
    top: 27%;
    right: 0;
    left: 0;
    margin: auto;
  }

  /* ヘッダー */
  /* .header_nav {
    display: none;
  } */

  .header_logo a {
    /* padding: 0; */
    padding: 2rem 1rem 1rem 1rem;
  }

  #ev_top_page .top_fv_wrapper {
    margin-top: 12rem;
    padding: 0;
  }

  .header_nav_flex {
    padding: 0 2rem;
  }

  /* フッター */
  /* .footer_flex_wrapper {
    justify-content: center;
    flex-direction: column;
    padding: 0 2rem;
  } */

  .footer::after {
    top: calc(100% - 149px);
    /* top: calc(100% - 180px); */
  }

  /* .footer_contents_right ul,
  .footer_contents_right a {
    display: none;
  } */

  .footer_top_arrow_wrapper {
    display: none;
    /* margin: 3.5rem 0 2rem; */
  }

  .footer_address {
    padding: 0 2rem;
  }

  .footer_top_arrow_wrapper img {
    top: 1px;
  }

  .copyright {
    bottom: 0;
    padding: 0 2rem 1rem;
  }

  .footer_logo_wrapper img {
    transform: scale(0.8);
  }

  #ev_feature .top_fv_wrapper,
  #ev_model_and_fee .top_fv_wrapper,
  #ev_reservation .top_fv_wrapper,
  #contact .top_fv_wrapper {
    margin-top: 9.5rem;
  }

  .hamburger_nav ul.active {
    margin-top: 3.5rem;
  }

  /* トップページ */
  .top_ttl_wrapper {
    margin-bottom: 3rem;
  }

  .top_ttl_wrapper img {
    transform: scale(0.7);
  }

  .top_grn_ttl {
    font-size: 2.4rem;
  }

  .top_grn_ttl::after {
    font-size: 1.6rem;
    margin-top: 1rem;
  }

  .contact_heading_logo img {
    transform: scale(0.7);
  }

  .fee_contents p {
    font-size: 1.6rem;
  }

  .fee_flex_wrapper {
    gap: 2px;
  }

  #ev_model_and_fee .fee_flex_wrapper {
    margin-top: 2rem;
  }

  .fee_flex_wrapper a {
    padding: 0;
    /* padding: 3rem 0; */
  }

  .fee_contents img {
    transform: scale(0.8);
  }

  .top_guide_flex {
    gap: 1rem;
  }

  .top_guide_flex a {
    font-size: 2rem;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 118px;
  }

  .top_guide_flex img {
    transform: scale(0.8);
  }

  .btn_contact_item::after {
    display: none;
  }

  .top_point_flex {
    gap: 1rem;
    justify-content: center;
    padding-top: 0;
    margin-bottom: 4rem;
  }

  .grn_more_btn a {
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    color: #fff;
    background-color: #3bae52;
    padding: 1rem 0;
    border-radius: 25px;
    font-weight: bold;
    font-size: 2rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.16);
    line-height: 1.3;
  }

  .top_point_flex > div {
    width: calc(100% / 2 - 1rem);
  }

  /* 4つのポイント */
  .feature_top_ttl {
    font-size: 2rem;
    margin: 0 0 2rem;
  }

  #point_bg_03 .point_contents_flex,
  #point_bg_04 .point_contents_flex {
    flex-direction: column;
  }

  #point_bg_01::after,
  #point_bg_02::after,
  #point_bg_03::after,
  #point_bg_04::after {
    display: none;
  }

  #feature_bg01 {
    background: none;
  }

  .top_point_flex_row {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }

  .top_point_flex_row > div {
    width: calc(100% / 2 - 1rem);
  }

  #ev_feature .contact_btn_flex {
    padding: 0;
  }

  #feature_contact {
    padding-top: 0;
  }

  /* .btn_contact_item .grn_more_btn a {
    padding: 2rem;
    gap: 1rem;
    font-size: 1.8rem;
  } */

  #top_contact_wrapper .contact_heading_flex {
    margin-top: 0;
    flex-direction: column;
  }

  #top_contact_wrapper .contact_heading_flex {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .contact_heading_flex {
    flex-direction: column;
  }

  .contact_heading_flex {
    padding-right: 0;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .contact_heading_flex h3 {
    font-size: 2.4rem;
  }

  #top_contact_wrapper .contact_btn_flex {
    margin-bottom: 0;
  }

  /* .contact_btn_flex {
    flex-direction: column;
    padding: 2rem 0 0;
  } */

  .btn_top_txt {
    font-size: 2rem;
    font-weight: bold;
    color: #3bae52;
    text-align: center;
    padding-left: 0;
    line-height: 1.3;
  }

  .btn_tel_item,
  .btn_contact_item {
    width: 100%;
  }

  /* 車種と料金 */
  section.top_model_fee {
    padding: 2rem 2rem 0;
    /* padding: 4rem 2rem 0; */
  }

  .btm_item_ttl {
    font-size: 1.8rem;
  }

  .btm_item span {
    font-size: 1.6rem;
  }

  .btm_item_fee {
    font-size: 2rem;
  }

  .fee_contents_item {
    border-top: 25px solid #3bae52;
    margin: 2rem 0 8rem;
  }

  .fee_contents_item:last-child {
    margin-bottom: 3rem;
  }

  .fee_contents_item h3 {
    line-height: 1;
    margin-bottom: 2rem;
  }

  .fee_contents_item h3 span {
    font-size: 1.6rem;
  }

  .fee_btm_flex {
    margin-bottom: 2rem;
  }

  #fee_contact_bg {
    padding-bottom: 8rem;
  }

  /* 予約状況 */
  #reservation_bg01::after {
    display: none;
  }

  #reservation_bg01 p {
    font-size: 1.6rem;
  }

  .reservation_top_txt,
  .ev_txt_wrapper {
    padding: 3rem 0;
  }

  .top_fv_wrapper {
    padding-bottom: 0;
  }

  .contact_btn_flex {
    padding: 0;
  }

  #reservation_access::after {
    display: none;
  }

  #reservation_contact {
    margin-top: 0;
    margin-bottom: 0;
  }

  .about_company_flex {
    flex-direction: column;
    margin-top: 4rem;
    margin-bottom: 4rem;
    gap: 2rem;
  }

  .about_company_flex > div {
    width: 100%;
  }

  .about_company_flex > div:first-child {
    margin-bottom: 3rem;
  }

  .reservation_container {
    padding: 0;
  }

  .reservation_flow_nav_flex {
    margin-bottom: 0;
  }

  .reservation_flow_wrapper {
    padding-top: 8rem;
  }

  /* 車両予約・お問い合わせ */
  select#car,
  textarea {
    width: 100%;
  }

  .reservation_form_container {
    padding: 2rem;
  }

  #reservation_form_bg::after,
  #contact_form_bg::after {
    display: none;
  }

  .form_container {
    padding-top: 0;
    margin: 4rem auto;
  }

  #contact .border_ttl_wrapper h2 {
    margin-top: 1rem;
  }

  #contact input[type="submit"] {
    margin-top: 0.5rem;
  }

  #footer_padding_top_none {
    margin-top: 0;
  }
}
