@charset "UTF-8";
/*390px基準のvw換算リスト
12px → 3.1vw
13px → 3.3vw
14px → 3.6vw
15px → 3.8vw
16px → 4.1vw
17px → 4.4vw
18px → 4.6vw
20px → 5.1vw
24px → 6.2vw

375px基準のvw換算リスト
12px → 3.3vw
13px → 3.5vw
14px → 3.8vw
15px → 4.1vw
16px → 4.3vw
17px → 4.5vw
18px → 4.9vw
20px → 5.4vw
24px → 6.5vw
*/
/* -----------------------------------------------
* Modules
-------------------------------------------------- */
/* --------------------------------
header
----------------------------------- */
.carshare .header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  padding: 0 1.25rem;
  margin: 0 auto;
  height: 119px;
}
@media only screen and (max-width: 1023px) {
  .carshare .header .header_inner {
    height: auto;
    padding: 0 0 0 0.625rem;
  }
}
.carshare .header .header_inner .logo {
  width: 155px;
}
@media only screen and (max-width: 1023px) {
  .carshare .header .header_inner .logo {
    width: 25%;
    margin-top: 0.625rem;
    z-index: 1000;
  }
}
.carshare .header .header_inner .header_link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: flex-start;
  gap: 10px;
}
@media only screen and (max-width: 1023px) {
  .carshare .header .header_inner .header_link {
    align-self: stretch;
    gap: 0;
    width: 50%;
  }
}
.carshare .header .header_inner .header_link-item {
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.2;
  width: 192px;
  padding: 0.625rem 0;
  border-radius: 0 0 10px 10px;
}
@media only screen and (max-width: 1023px) {
  .carshare .header .header_inner .header_link-item {
    font-size: 2.5vw;
    line-height: 1.3;
    width: 30%;
    height: 100%;
    border-radius: 0;
    padding: 0rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.carshare .header .header_inner .header_link-item span {
  display: inline-block;
  padding: 0 0 0 0.625rem;
}
.carshare .header .header_inner .header_link-item_new {
  background: #ea350e;
}
.carshare .header .header_inner .header_link-item_new span {
  position: relative;
  padding-left: 34px;
}
@media only screen and (max-width: 1023px) {
  .carshare .header .header_inner .header_link-item_new span {
    padding-left: 0;
    padding-top: 20px;
  }
}
.carshare .header .header_inner .header_link-item_new span:before {
  content: "";
  background: url("../../assets/img/top/icon_card.svg") no-repeat;
  background-size: 24px;
  width: 24px;
  height: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media only screen and (max-width: 1023px) {
  .carshare .header .header_inner .header_link-item_new span:before {
    background-size: 20px;
    width: 20px;
    height: 15px;
    bottom: auto;
    right: 0;
  }
}
.carshare .header .header_inner .header_link-item_login {
  background: #2096f3;
}
.carshare .header .header_inner .header_link-item_login span {
  position: relative;
  padding-left: 34px;
}
@media only screen and (max-width: 1023px) {
  .carshare .header .header_inner .header_link-item_login span {
    padding-left: 0;
    padding-top: 20px;
  }
}
.carshare .header .header_inner .header_link-item_login span:before {
  content: "";
  background: url("../../assets/img/top/icon_car.svg") no-repeat;
  background-size: 29px;
  width: 29px;
  height: 19px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media only screen and (max-width: 1023px) {
  .carshare .header .header_inner .header_link-item_login span:before {
    background-size: 20px;
    width: 20px;
    height: 15px;
    bottom: auto;
    right: 0;
  }
}
.carshare .nav {
  max-width: 1000px;
  padding: 0 1.25rem;
  margin: 0.625rem auto 0;
}
@media only screen and (max-width: 1023px) {
  .carshare .nav {
    padding: 0 0.625rem;
    margin: 0;
  }
}
.carshare .nav .nav_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .carshare .nav .nav_list {
    flex-direction: column;
    border-bottom: 1px solid #1e5db4;
  }
}
.carshare .nav .nav_list .nav_item {
  width: 15.8333333333%;
}
@media only screen and (max-width: 1023px) {
  .carshare .nav .nav_list .nav_item {
    width: 100%;
  }
}
.carshare .nav .nav_list .nav_link {
  display: block;
  color: #1e5db4;
  width: 100%;
  border: 2px solid #1e5db4;
  text-align: center;
  padding: 0.9375rem 0;
  font-size: 0.875rem;
  line-height: 1;
}
@media only screen and (max-width: 1023px) {
  .carshare .nav .nav_list .nav_link {
    padding: 0.9375rem 0;
    font-size: 0.875rem;
    line-height: 1;
    border: none;
    border-top: 1px solid #1e5db4;
  }
}

/* --------------------------------
fv
----------------------------------- */
.fv {
  background-color: #747474;
}

/* --------------------------------
footer
----------------------------------- */
.footer {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 1023px) {
  .footer {
    width: 100%;
    margin-top: 0;
    padding-bottom: 43px;
  }
}
.footer a {
  color: inherit;
}
.footer .footer_nav {
  background-color: #1e5db4;
  color: #fff;
  padding: 2.5rem 0;
}
@media only screen and (max-width: 1023px) {
  .footer .footer_nav {
    background-color: #fff;
    color: #1e5db4;
    padding: 0;
  }
}
.footer .footer_nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.625rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 1023px) {
  .footer .footer_nav-inner {
    padding: 0 0.625rem;
    flex-direction: column;
  }
}
.footer .footer_nav-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
}
@media only screen and (max-width: 1023px) {
  .footer .footer_nav-list {
    gap: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .footer .footer_nav-item {
    margin-top: 0.9375rem;
  }
}
@media only screen and (max-width: 1023px) {
  .footer .footer_nav-link {
    display: block;
    border: 2px solid #1e5db4;
    padding: 0.9375rem 0;
    width: 100%;
    text-align: center;
    border-radius: 30px;
  }
}
.footer .footer_cta {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 2.5rem 0;
}
@media only screen and (max-width: 1023px) {
  .footer .footer_cta {
    gap: 0;
    margin-top: 1.25rem;
    padding: 0;
    position: fixed;
    bottom: 0;
    z-index: 6;
    left: 0;
    width: 100%;
  }
}
.footer .footer_cta .footer_cta_btn {
  display: block;
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.8;
  width: 365px;
  border-radius: 35px;
  padding: 0.875rem 0;
}
@media only screen and (max-width: 1023px) {
  .footer .footer_cta .footer_cta_btn {
    font-size: 0.875rem;
    line-height: 1.7;
    padding: 0.625rem 0;
    width: 100%;
    border-radius: 0;
  }
}
.footer .footer_cta .footer_cta_btn span {
  position: relative;
}
.footer .footer_cta .footer_cta_btn span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media only screen and (max-width: 1023px) {
  .footer .footer_cta .footer_cta_btn span:before {
    background-size: 20px;
    width: 20px;
    height: 15px;
  }
}
.footer .footer_cta .footer_cta_btn-new {
  background: #f05a64;
}
.footer .footer_cta .footer_cta_btn-new span {
  padding-left: 51px;
}
@media only screen and (max-width: 1023px) {
  .footer .footer_cta .footer_cta_btn-new span {
    padding-left: 30px;
  }
}
.footer .footer_cta .footer_cta_btn-new span:before {
  background: url("../../assets/img/top/icon_card.svg") no-repeat;
  background-size: 41px;
  width: 41px;
  height: 29px;
}
@media only screen and (max-width: 1023px) {
  .footer .footer_cta .footer_cta_btn-new span:before {
    background-size: 20px;
    width: 20px;
    height: 15px;
  }
}
.footer .footer_cta .footer_cta_btn-login {
  background: #2096f3;
}
.footer .footer_cta .footer_cta_btn-login span {
  padding-left: 59px;
}
@media only screen and (max-width: 1023px) {
  .footer .footer_cta .footer_cta_btn-login span {
    padding-left: 30px;
  }
}
.footer .footer_cta .footer_cta_btn-login span:before {
  background: url("../../assets/img/top/icon_car.svg") no-repeat;
  background-size: 49px;
  width: 49px;
  height: 34px;
}
@media only screen and (max-width: 1023px) {
  .footer .footer_cta .footer_cta_btn-login span:before {
    background-size: 20px;
    width: 20px;
    height: 15px;
  }
}
.footer .footer_copyright {
  background-color: #1e5db4;
  color: #fff;
  text-align: center;
  padding: 0.625rem 0;
}
@media only screen and (max-width: 1023px) {
  .footer .footer_copyright {
    margin-top: 1.25rem;
    font-size: 3.5vw;
  }
}

/* --------------------------------
breadcrumb
----------------------------------- */
.breadcrumb {
  max-width: 1060px;
  margin: 0.625rem auto;
  padding: 0 1.875rem;
  color: #222;
}
.breadcrumb .breadcrumb_list {
  display: flex;
  justify-content: flex-start;
}
.breadcrumb .breadcrumb_item {
  font-size: 0.75rem;
}
.breadcrumb .breadcrumb_item + *::before {
  content: ">";
  margin: auto 0.5em;
}

/* --------------------------------
pagetop
----------------------------------- */
.pagetop {
  position: fixed;
  background: #666;
  right: 0;
}
.pagetop a {
  display: block;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  .pagetop a {
    width: 40px;
    height: 40px;
  }
}
.pagetop a img {
  width: 100%;
}

.carshare .main .mv img {
  height: 388px;
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .mv img {
    height: auto;
  }
}
.carshare .main .main_section-inner {
  max-width: 1040px;
  padding: 0 1.25rem;
  margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-inner {
    padding: 0 0.625rem;
  }
}
.carshare .main .main_section-flyer {
  margin-top: 1.875rem;
}
.carshare .main .main_section-flyer_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-flyer_box {
    flex-direction: column;
    margin-bottom: 2.5rem;
  }
}
.carshare .main .main_section-flyer_box img {
  width: 49%;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-flyer_box img {
    width: 100%;
  }
}
.carshare .main .main_section-point {
  margin-top: 3.75rem;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-point {
    margin-top: 1.875rem;
  }
}
.carshare .main .main_section-point-heading {
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-point-heading img {
    width: min(100%, 275px);
  }
}
.carshare .main .main_section-point-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 1.875rem;
}
.carshare .main .main_section-point-item {
  width: 300px;
  margin-bottom: 4.0625rem;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-point-item {
    width: 48%;
    margin-bottom: 1.875rem;
  }
}
.carshare .main .main_section-point-item p {
  text-align: center;
  font-weight: 600;
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.2;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-point-item p {
    font-size: 0.75rem;
    line-height: 1.2;
  }
}
.carshare .main .main_section-point-item p span {
  display: block;
  color: #f59227;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-top: 0.3125rem;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-point-item p span {
    font-size: 0.8125rem;
    line-height: 1.1;
  }
}
.carshare .main .main_section-link {
  margin-top: 3.75rem;
  background: url("../../assets/img/top/link_bg_pc.svg") no-repeat;
  background-size: cover;
  padding: 3.75rem 0;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-link {
    margin-top: 0.9375rem;
    background: url("../../assets/img/top/link_bg_sp.svg") no-repeat;
    background-size: cover;
    padding: 1.875rem 0;
  }
}
.carshare .main .main_section-link-list {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 3.75rem;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-link-list {
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 0.9375rem;
  }
}
.carshare .main .main_section-link-item {
  width: 25%;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-link-item {
    width: 48%;
  }
}
.carshare .main .main_section-link-item a {
  display: block;
}
.carshare .main .main_section-link-item a img {
  width: 100%;
}
.carshare .main .main_section-parking-heading {
  background: #1e5db4;
  text-align: center;
  color: #fff;
  font-weight: 600;
  padding: 0.625rem 0;
  font-size: 2.0625rem;
  line-height: 1.7;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-parking-heading {
    font-size: 1rem;
    line-height: 1.8;
    padding: 0.3125rem 0;
  }
}
.carshare .main .main_section-parking-contents {
  display: flex;
  justify-content: space-between;
  margin-top: 1.875rem;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-parking-contents {
    flex-direction: column;
    margin-top: 0.9375rem;
  }
}
.carshare .main .main_section-parking-contents img {
  width: 292px;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-parking-contents img {
    width: 100%;
  }
}
.carshare .main .main_section-parking-box {
  margin-left: 1.25rem;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-parking-box {
    margin-left: 0;
  }
}
.carshare .main .main_section-parking-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.875rem;
  gap: 10px;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-parking-item {
    flex-direction: column;
    margin-top: 0.9375rem;
    margin-bottom: 0;
    gap: 0;
  }
}
.carshare .main .main_section-parking-item dt {
  background: #67a2df;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  width: 100px;
  font-size: 1.125rem;
  line-height: 1.7;
  padding: 0.25rem 0;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-parking-item dt {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.4;
  }
}
.carshare .main .main_section-parking-item dd {
  font-size: 1.25rem;
  line-height: 1.2;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-parking-item dd {
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.4;
    margin-top: 0.625rem;
  }
}
.carshare .main .main_section-parking-item2col {
  display: flex;
  justify-content: flex-start;
  gap: 6.25rem;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-parking-item2col {
    flex-direction: column;
    gap: 0;
  }
}
.carshare .main .main_section-parking .map {
  margin: 2.5rem 0;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_section-parking .map {
    margin: 1.25rem 0 0;
  }
}
.carshare .main .main_cta {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.carshare .main .main_cta .cta_btn {
  display: block;
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.8;
  width: 480px;
  border-radius: 35px;
  padding: 0.875rem 0;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_cta .cta_btn {
    font-size: 0.875rem;
    line-height: 1.7;
    padding: 0.5rem 0;
    width: min(100%, 240px);
  }
}
.carshare .main .main_cta .cta_btn span {
  position: relative;
}
.carshare .main .main_cta .cta_btn span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_cta .cta_btn span:before {
    background-size: 20px;
    width: 20px;
    height: 15px;
  }
}
.carshare .main .main_cta .cta_btn-pink {
  background: #f05a64;
}
.carshare .main .main_cta .cta_btn-pink span {
  padding-left: 51px;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_cta .cta_btn-pink span {
    padding-left: 30px;
  }
}
.carshare .main .main_cta .cta_btn-pink span:before {
  background: url("../../assets/img/top/icon_card.svg") no-repeat;
  background-size: 41px;
  width: 41px;
  height: 29px;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_cta .cta_btn-pink span:before {
    background-size: 20px;
    width: 20px;
    height: 15px;
  }
}
.carshare .main .main_cta .cta_btn-blue {
  background: #67a2df;
}
.carshare .main .main_cta .cta_btn-blue span {
  padding-left: 59px;
}
.carshare .main .main_cta .cta_btn-blue span:before {
  background: url("../../assets/img/top/icon_search.svg") no-repeat;
  background-size: 49px;
  width: 49px;
  height: 34px;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .main_cta .cta_btn-blue span:before {
    background-size: 20px;
  }
}
.carshare .main .map iframe {
  width: 100%;
  height: 362px;
  border: 0;
}
@media only screen and (max-width: 1023px) {
  .carshare .main .map iframe {
    height: 250px;
  }
}

/*# sourceMappingURL=style.css.map */
