@charset "utf-8";

/************************************************
 トップページ
*************************************************/
.home #container {
  margin: 50px auto 0;
  display: block;
}

/* ==============================================
 見出し
=============================================== */
.home main h1 {
  margin: 35px 0 25px 0;
  padding: 30px 0 25px 0;
}


/* ==============================================
 メインビジュアル
=============================================== */
.home #main_visual {
  text-align: center;
  /*background: url(../images/bg_main_visual.jpg) center center no-repeat;*/
  /*background-size: cover;*/
}
#main_visual_inner {
  background-color: rgba(0,0,0,0.1);
}
.home #main_visual_inner {
  background-color: rgba(0,0,0,0);
}

#main_visual_text {
  padding: 50px 0;
}
@media print, screen and (min-width: 768px){
  #main_visual_text {
    padding: 130px 0;
  }
}

#hero .metaslider {
  margin-top: 30px;
  text-align: center;
}
#hero .metaslider * {
  transition: 0s;
}
#hero .metaslider .caption-wrap {
  background-color: transparent;
  bottom: calc(50% - .6rem);
  font-size: 1.2rem;
  font-weight: bold;
  opacity: 1;
  text-shadow: .1em .1em 0 rgba(0, 0, 0, .7);
}
@media (min-width: 768px) {
  #hero .metaslider .caption-wrap {
    bottom: calc(50% - 1.2rem);
    font-size: 2.4rem;
  }
  #hero .metaslider img {
    max-height: 640px;
    object-fit: cover;
  }
}


/* ==============================================
 サービス紹介
=============================================== */
#index_service_area {
  margin-bottom: 50px;
}
#index_service_area .index_service_box  {
  max-width: 520px;
}
@media screen and (max-width: 767px){
  .index_service_box.left_box,
  .index_service_box.right_box {
    float: none;
    margin: 0 auto 20px;
  }
}

#index_service_area h1:first-child {
  margin-top: 0 !important;
}

/* 写真
----------------------------------------------- */
#index_service_area .index_service_photo {
  position: relative;
  text-align: center;
  border-top: 1px solid #E5E5E5;
  border-right: 1px solid #E5E5E5;
  border-left: 1px solid #E5E5E5;
  border-radius: 10px 10px 0 0;
}

#index_service_bus .index_service_photo {
  background: url(../images/img_bus.jpg) center center no-repeat;
  background-size: cover;
}
#index_service_taxi .index_service_photo {
  background: url(../images/img_taxi.jpg) center center no-repeat;
  background-size: cover;
}
#index_service_travel .index_service_photo {
  background: url(../images/img_travel.jpg) center center no-repeat;
  background-size: cover;
}
#index_service_plan .index_service_photo {
  background: url(../images/img_plan.jpg) center center no-repeat;
  background-size: cover;
}

#index_service_area .index_service_photo:hover {
  background-color: transparent;
}

.index_service_photo a {
  display: block;
  height: 310px;
}
.index_service_photo:hover {
  opacity: 0.85;
}
.index_service_photo .index_service_photo_circle {
  transition: .6s; /* アニメーションの秒数を指定 */
  transform: rotateZ(0deg);
  margin: 0;
  padding: 0;
}
.index_service_photo:hover .index_service_photo_circle {
  transform: rotateZ(360deg);
}
#index_service_area .index_service_photo_cloud {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 262px;
  height: 60px;
}

/* テキスト
----------------------------------------------- */
#index_service_area .index_service_text {
  background: #fff;
  padding: 15px;
  border-bottom: 1px solid #E5E5E5;
  border-right: 1px solid #E5E5E5;
  border-left: 1px solid #E5E5E5;
  border-radius: 0 0 10px 10px;
}
#index_service_area .index_service_text p {
  height: 95px;
}
@media screen and (max-width: 767px){
  #index_service_area .index_service_text p {
      height: auto;
  }
}

/* ==============================================
 新着情報
=============================================== */
#index_news_area {
  padding-bottom: 100px;
  border-top: 1px solid #b2b2b2;
  /*border-bottom: 1px solid #b2b2b2;*/
  /*background: #fff url(../images/bg_news.png) bottom repeat-x;*/
}
#index_news_area h1 i {
  margin-right: 20px;
  color: #8BC53E;
}
.news_list_box {
  max-width: 750px;
  margin: 0 auto 40px;
}
.news_list_box:last-child {
  margin: 0 auto;
}
ul.news_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news_list li {
  padding: 20px 5px;
  border-top: 1px dashed #b2b2b2;
  line-height: 1.5;
}
.news_list li:last-child {
  border-bottom: 1px dashed #b2b2b2;
}
.news_list .date {
  margin-right: 10px;
}
.news_list .title {
  color: #333333;
}
.news_list .title:hover ,.news_list .title:active {
  opacity: 0.5;
}

/* ==============================================
 バナーエリア
=============================================== */
#index_banner_area {
  max-width: 780px;
  margin: 20px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
#index_banner_area div {
  margin: 10px 1%;
}
@media screen and (max-width: 767px){
  #index_banner_area {
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index_banner_area div {
    width: auto;
  }
}
@media screen and (max-width: 479px) {
  #index_banner_area div {
    width: 48%;
  }
}

/* ==============================================
ピックアップ
=============================================== */
#index_pickup_area {
  text-align: center;
}

@media screen and (max-width: 479px) {
  #index_pickup_area iframe {
    width: 100%
  }
}


/* ==============================================
アラートメッセージ
=============================================== */
#alert ul {
  background-color: #ff9;
  list-style: none;
  padding-left: 0;
}
#alert li {
  padding: 1.5em 3em;
}
#alert .widgettitle {
  border: none;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}

/* ==============================================
メイン直下のサイド
=============================================== */
.home main + aside:before {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: #fff url('../images/bg_news.png') repeat-x bottom left;
  border-bottom: 1px solid #b2b2b2;
}