@charset "UTF-8";
/*
----------
top_en.css
----------
*/
h1,
h2,
h3,
h4,
p {
  word-break: break-all;
  overflow-wrap: break-word;
}

footer .footId .f-address p {
  display: inline-block;
  margin-right: 1rem;
  word-break: break-all;
  overflow-wrap: break-word;
}

.kv {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
}

/* 背景動画 ------------- */
.kv.video-box {
  overflow: hidden;
}

.kv.video-box .video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}

/* あみかけ */
.kv.video-box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 24, 94, 0.5);
}

.kv__inner {
  color: white;
  margin-left: 7%;
  position: relative;
  z-index: 1;
}
.kv__inner h1,
.kv__inner h2,
.kv__inner h3 {
  text-shadow: 1px 2px 2px rgb(0, 0, 0);
  line-height: 1.3;
  font-weight: 700;
}
.kv__inner h1 {
  font-size: 3.2rem;
  margin-bottom: 2.5rem;
}
.kv__inner h3 img {
  max-width: 350px;
  margin: 0 0 30px 0;
}
.kv__inner ul.btn_wrap {
  display: flex;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
}
.kv__inner ul.btn_wrap li {
  width: 18rem;
}
.kv__inner ul.btn_wrap a.btn {
  padding: 1.25rem 1rem;
  width: 100%;
  font-size: 1.2rem;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 980px) {
  .kv {
    height: 65vh;
  }
  .kv__inner h1 {
    font-size: 3rem;
  }
  .kv__inner h3 img {
    max-width: 50%;
    margin-bottom: 2.5rem;
  }
  .kv__inner ul.btn_wrap a.btn {
    padding: 1rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 750px) {
  .kv {
    height: 80vh;
  }
  .kv__inner {
    margin-left: auto;
    margin-right: auto;
    width: 92vw;
  }
  .kv__inner h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.75rem;
  }
  .kv__inner h3 img {
    max-width: 60%;
    margin-bottom: 1.75rem;
  }
  .kv__inner ul.btn_wrap {
    padding: 0;
    width: 100%;
  }
  .kv__inner ul.btn_wrap li {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
  .kv__inner ul.btn_wrap li a.btn {
    padding: 0.75rem 1rem;
  }
}
/* スクロールダウンのためのCSS
------------- */
.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 10px;
  height: 50px;
  z-index: 2;
}

.scrolldown span {
  position: absolute;
  left: -15px;
  top: -15px;
  color: #eee;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@media screen and (max-width: 750px) {
  .scrolldown {
    bottom: 5px;
    height: 30px;
  }
  .scrolldown span {
    left: -10px;
    top: -10px;
    font-size: 0.7rem;
  }
  .scrolldown::after {
    height: 10px;
  }
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
/*
 遅れて表示
ーーーーーーーーーーー */
.item {
  -webkit-animation-name: scroll_text;
  animation-name: scroll_text;
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes scroll_text {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll_text {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
ーーーーーーーーーーー
 共通
ーーーーーーーーーーー */
.main_copy {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 2rem;
}

@media screen and (max-width: 980px) {
  .main_copy {
    font-size: 1.4rem;
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 750px) {
  .main_copy {
    font-size: 1.1rem;
    max-width: 90vw;
  }
}
/*
ーーーーーーーーーーー
 tasks
ーーーーーーーーーーー */
.tasks {
  background-color: white;
}
.tasks__inner h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.tasks__inner h2 span {
  margin-right: 5px;
  color: #9a2c8b;
  font-size: 1.3em;
}
.tasks__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 1.5rem;
}
.tasks__list dl {
  border-radius: 10px;
  background-color: #ecf0f6;
  text-align: center;
  width: calc(33.3333333333% - 20px);
}
.tasks__list dl img {
  width: 100%;
}
.tasks__list dl dt {
  text-align: center;
  padding: 0 1rem 1.5rem;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  box-sizing: border-box;
}
.tasks__list dl dd {
  padding: 1rem;
}
.tasks picture img {
  padding: 1rem;
}

@media screen and (max-width: 980px) {
  .tasks__inner {
    padding: 2rem 0;
  }
  .tasks__inner h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .tasks__list dl dt {
    font-size: 1rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 750px) {
  .tasks__list dl dt {
    font-size: 1.1rem;
  }
  .tasks__list dl {
    width: 100%;
    margin: 0 auto 1.5rem auto;
  }
}
/* triangle  */
.tasks .triangle {
  text-align: center;
  margin-top: 3.8rem;
}
.tasks .triangle::after {
  margin: 0 auto;
  content: "";
  border-top: 4rem solid #687abc;
  border-left: 8rem solid transparent;
  border-right: 8rem solid transparent;
}
@media screen and (max-width: 750px) {
  .tasks .triangle {
    margin-bottom: 2rem;
  }
  .tasks .triangle::after {
    bottom: -2.5rem;
    left: calc(50% - 6rem);
    border-top: 4rem solid #687abc;
    border-left: 6rem solid transparent;
    border-right: 6rem solid transparent;
  }
}

/*
ーーーーーーーーーーー
 service
ーーーーーーーーーーー */
.service {
  background-color: #f2f2f2;
}
.service picture img {
  padding: 1rem;
}
.service__list {
  display: flex;
  justify-content: center;
  margin: 0 auto 4rem auto;
  flex-wrap: wrap;
  max-width: 960px;
}
.service__list dl {
  text-align: center;
  width: calc(33.3333333333% - 20px);
}
.service__list dl dt {
  text-align: center;
  text-shadow: 2px 2px 3px rgb(0, 0, 0);
}
.service__list dl dt img {
  padding: 0;
  width: 100%;
  max-width: 250px;
}
.service__list dl dd h2 {
  text-align: center;
  font-size: 1.2rem;
  color: #05185e;
  padding: 0 10px;
}
.service__list dl dd p {
  text-align: center;
}

@media screen and (max-width: 980px) {
  .service__inner {
    padding: 2rem 0;
  }
  .service h2 {
    padding: 0;
  }
}
@media screen and (max-width: 750px) {
  .service picture img {
    padding: 0;
  }
  .service__list {
    margin: 0 auto 2rem auto;
  }
  .service__list dl {
    width: calc(50% - 10px);
  }
  .service__list dl dd h2 {
    font-size: 1.2rem;
  }
}
/* triangle  */
.service .triangle {
  text-align: center;
}
.service .triangle::after {
  margin: 0 auto;
  content: "";
  border-top: 3rem solid #687abc;
  border-left: 4rem solid transparent;
  border-right: 4rem solid transparent;
}
@media screen and (max-width: 750px) {
  .service .triangle {
    margin-top: 2rem;
  }
  .service .triangle::after {
    left: calc(50% - 2rem);
    border-top: 1.6rem solid #687abc;
    border-left: 2rem solid transparent;
    border-right: 2rem solid transparent;
  }
}

/*
ーーーーーーーーーーー
 schedule
ーーーーーーーーーーー */
.schedule {
  background-color: #f2f2f2;
}
.schedule .l-container {
  padding-bottom: 6rem;
}
.schedule__features {
  text-align: center;
  margin: 1rem auto;
  padding: 2rem;
  background-color: white;
  border-radius: 15px;
}
.schedule__features h2 {
  font-size: 1.3rem;
  text-align: center;
  margin: 1rem auto 0.25rem auto;
  color: #05185e;
}

@media screen and (max-width: 980px) {
  .schedule .l-container {
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 750px) {
  .schedule__features {
    padding: 1rem;
  }
  .schedule__features h2 {
    font-size: 0.85rem;
    margin: 0 auto 0.5rem auto;
  }
}
/*
ーーーーーーーーーーー
 contact
ーーーーーーーーーーー */
.contact_container {
  background-color: #21385b;
  background-image: url(../../assets/img/common/bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  padding: 4rem 3%;
  position: relative;
}
.contact_container ul.btn_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.contact_container ul.btn_wrap li {
  width: 400px;
}
.contact_container ul.btn_wrap li a.btn {
  width: 96%;
  padding: 1.5rem 1rem;
  font-size: 1.2rem;
}

@media screen and (max-width: 980px) {
  .contact_container ul.btn_wrap {
    padding: 0 0;
  }
  .contact_container ul.btn_wrap li {
    width: 50%;
  }
  .contact_container ul.btn_wrap li a.btn {
    padding: 1rem 0.5rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 750px) {
  .contact_container {
    padding: 2.5rem 10%;
  }
  .contact_container ul.btn_wrap li {
    width: 100%;
  }
}
/*
ーーーーーーーーーーー
 faq
ーーーーーーーーーーー */
.faq .l-inner {
  max-width: 1000px;
}
.faq .accordion {
  margin: 0 auto;
}
.faq .toggle {
  display: none;
}
.faq .option {
  position: relative;
}
.faq .faq_ttl,
.faq .faq_content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.faq .faq_ttl {
  border: solid 1px #ccc;
  background-color: white;
  padding: 1em;
  display: block;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem;
}
.faq .icn_q {
  font-weight: 700;
  color: #148cd3;
  font-size: 1.5rem;
  margin-right: 10px;
}
.faq .faq_ttl::after,
.faq .faq_ttl::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 40%;
  width: 2px;
  height: 0.75em;
  background-color: #999;
  transition: all 0.3s;
}
.faq .faq_ttl::after {
  transform: rotate(90deg);
}
.faq .faq_content {
  max-height: 0;
  overflow: hidden;
  background-color: white;
  margin-bottom: 5px;
}
.faq .faq_content p {
  margin: 0;
  padding: 2rem 2rem;
}
.faq .toggle:checked + .faq_ttl + .faq_content {
  max-height: 500px;
  transition: all 1.5s;
}
.faq .toggle:checked + .faq_ttl::before {
  transform: rotate(90deg) !important;
}

@media screen and (max-width: 750px) {
  .faq .faq_ttl {
    font-size: 1rem;
    padding: 0.5rem 2rem 0.5rem 1rem;
  }
  .faq .icn_q {
    font-size: 1.2rem;
  }
  .faq .faq_content p {
    margin: 0;
    padding: 1rem;
  }
}
/*
ーーーーーーーーーーー
 case
ーーーーーーーーーーー */
.case {
  background: #ecf0f6;
}

.case .case-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.case .case-list .case-list-item {
  width: calc(50% - 10px);
  margin-bottom: 2rem;
  padding: 0 0 3rem 0;
  text-align: left;
  box-shadow: 0px 0px 20px rgba(5, 24, 94, 0.1);
  position: relative;
  background-color: white;
}
.case .case-list .case-list-item .case-fig {
  width: 100%;
  height: 16rem;
  background-position: center 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.case .case-list .case-list-item.ev_volta .case-fig {
  background-image: url(../../assets/img/top/pic_case_volta.png);
}
.case .case-list .case-list-item.ev_evot .case-fig {
  background-image: url(../../assets/img/top/pic_case_evot.png);
}
.case .case-list .case-list-item.ev_bike .case-fig {
  background-image: url(../../assets/img/top/pic_case_bike.png);
}
.case .case-list .case-list-item.ev_osaka .case-fig {
  background-image: url(../../assets/img/top/pic_case_osaka.png);
}
.case .case-list .case-list-item .case-info {
  width: 100%;
  padding: 2em;
}
.case .case-list .case-list-item .case-info h3 {
  margin-bottom: 1rem;
}
.case .case-list .case-list-item .case-info p {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4;
  padding-bottom: 0.5rem;
}
.case .case-list .case-list-item .case-btn {
  text-align: center;
  position: absolute;
  bottom: 2rem;
  width: 100%;
}
.case .case-list .case-list-item .case-btn a.btn {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 1rem 0.5rem;
}

@media screen and (max-width: 980px) {
  .case .case-list {
    flex-direction: column;
  }
  .case .case-list .case-list-item {
    width: 94%;
    margin: 0 auto 1.5rem auto;
  }
  .case .case-list .case-list-item .case-btn a.btn {
    padding: 1rem 1rem;
    max-width: 90%;
  }
  .case .case-list .case-list-item .case-info p {
    font-size: 1rem;
  }
}

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