/* ================================================================================================
シャトルバスページ
=================================================================================================== */

/* ==============================
共通
================================= */
body{
  background-color: #fff;
}
img{
  max-width: 100%;
}
a{
  color: #e43535;
  font-weight: bold;
}
.pc-view{
  display: inline-block;
}
.sp-view{
  display: none;
}

.btn-wrap{
  text-align: center;
}
.red-button{
  display: inline-block;
  padding: 20px;
  background-color: #e43535;
  color: #fff;
  border-radius: 31.5px;
  box-sizing: border-box;
  width: 100%;
  max-width: 440px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.red-button::before{
  content: "";
  display: inline-block;
  height: 15px;
  width: 27px;
  background: url(../images/tokyo_bay_shuttle/right_arrow.png) no-repeat center;
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform:translate(0, -50%);
  -ms-transform:translate(0, -50%);
  transform:translate(0, -50%);
}
.red-button.link::before{
  background: url(../images/tokyo_bay_shuttle/icn_windows.png) no-repeat center;
  height: 16px;
  width: 21px;
  right: 60px;
}
.sec-wrap{
  margin-bottom: 40px;
}
.sec-inner{
  box-sizing: border-box;
  margin: 0 auto;
}
.sec-ttl{
  font-family: "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 3.2rem;
  font-style: oblique;
}

@media screen and (max-width: 980px){
  .pc-view{
    display: none;
  }
  .sp-view{
    display: block;
  }
  .red-button{
    width: 100%;
  }
  .red-button::before{
    width: 15px;
    height: 10px;
    background-size: contain;
  }
  .red-button.link::before{
    right: 20px;
    height: 12px;
    width: 14px;
    background-size: contain;
  }
}


/* ==============================
layaout
================================= */
.l-header{
  padding: 20px;
  position: fixed;
  z-index: 999;
  margin: 0 auto;
  box-sizing: border-box;
}

.l-main{
  margin: 0 auto;
	height:100vh;
}

.f-left{
  float: left;
}
.f-right{
  float: right;
}
@media screen and (max-width: 980px){
  .l-header{
    padding: 0 15px;
  }
  
}


/* ==============================
header/footer
================================= */
.header-left,
.header-lp-left {
  /*float: left*/;
  display: inline-block;
  width: 49%;
  }
.header-right,
.header-lp-right {
  /*float: right;*/
  display: inline-block;
  width: 50%;
  position: relative;
}
.navs{
  text-align: right;
}
.sns-li{
  float: right;
  display: inline-block;
}
.sns-li li{
  display: inline-block;
  margin: 0 4px;
  vertical-align: top;
  width: 25px;
}
.language{
  margin-right: 17px;
  color: #fff;
  display: inline-block;
}
.language a::before{
  font-size: 20px;
  vertical-align: sub;
}
.language i{
  margin: 0 7px;
  vertical-align: sub;
  font-weight: bold;
}
.gray-area{
  background-color: #f0f0f0;
  padding: 30px 90px;
}

.gray-area .area-ttl{
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: bold;
}

@media screen and (max-width: 980px){
  .l-header-inner{
    height: 25px;
    margin: 0 auto 10px;
    padding-top: 11px;
  }
  .header-right{
    float: right;
    width: calc(100% - 110px);
  }
  .header-left{
    float: left;
    text-align: left;
    width: auto;
  }
  .sns-li{
    float: none;
  }
  .sns-li li{
    margin: 0 8px;
  }
  .sns-li img{
    height: 25px;
  }
  .language{
    margin-top: -7px;
    float: right;
    font-size: 0.8rem;
    font-weight: bold;
  }
  .language a::before{
  display: block;
  text-align: center;
  font-size: 35px;
  } 
  .gray-area{
    padding: 20px 15px;
    font-size: 1.2rem;
  }
  .gray-area .area-ttl{
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: bold;
}
}


/* ==============================
メインビジュアル
================================= */
.end-tt1-box {
	background: rgba(222, 0, 0, 0.7);
	padding: 60px 20px;
	font-size: 1.6rem;
	width: 100%;
	max-width: 780px;
	color: #fff;
	text-align: center;
	z-index: 1000;
}
.end-tt1 {
	margin-bottom: 10px;
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	text-align: center;
}

.mv,
.mv-inner {
  height: 100%;
}
.mv-bg{
  position: relative;
  background: url(../images/tokyo_bay_shuttle/mv_bg.jpg) no-repeat center;
  background-size: cover;
	height: 100%;
	display: -webkit-box;
  display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 20px 20px;
  box-sizing: border-box;
}
.mv-bg::after{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    content: "";
    background: url(../images/tokyo_bay_shuttle/bg_blackdot.jpg) repeat;
    opacity: 0.5;
    z-index: 9;
  }
.mv-ttl{
  padding-top: 140px;
  position: relative;
  z-index: 10;
  text-align: center;
}
.ttl-frame{
  padding-bottom: 150px;
  margin: 0 auto;
  max-width: 747px;
  width: 100%;
}

@media screen and (max-width: 980px){
  .mv{
    margin: -50px auto 75px;
  }
  .mv-bg{
    position: relative;
    background: url(../images/tokyo_bay_shuttle/mv_bg_sp.jpg) no-repeat center;
    background-size: cover;
  }
  .mv-ttl{
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .ttl-frame{
    padding: 0 0 75px;
    max-width: 580px;
    width: 100%;
    position: relative;
    margin: 0 auto;
  }
  .budge{
    display: inline-block;
    width: 160px;
    position: absolute;
    top: 60%;
    left: -20px;
    z-index: 9;
  } 
}

@media screen and (max-width: 640px){
  .budge{
    width: 80px;
    top: 62%;
    left: -10px
  }
}


/* ==============================
東京ベイシャトルとは
================================= */
.about.sec-inner{
  padding: 0 60px 0;
  max-width: 1280px;
  margin: 0 auto;
}

.about .f-right{
  width: 624px;
}
.about .f-left{
  width: calc(100% - 675px);
}

.about .sec-ttl{
  padding-bottom: 10px;
  margin-bottom: 30px;
  display: inline-block;
  border-bottom: solid 3px #d8373e;
  color: #e43535;
  
}
.about .sec-ttl::before{
  display: inline-block;
  margin-right: 15px;
  content: "";
  height: 40px;
  width: 40px;
  background:url(../images/tokyo_bay_shuttle/icn_sec-ttl.png) no-repeat center;
}
.about p{
  line-height: 3;
  margin-bottom: 30px;
  font-weight: bold;
}

@media screen and (max-width: 980px){
  .about .f-right{
    float: none;
    width: 100%;
  }
  .about .f-left{
    float: none;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 584px;
  }
  .about{
    text-align: center;
  }
  .about.sec-inner{
    padding: 0 15px;
  }
  .about .sec-ttl{
    font-size: 2.2rem;
  }
  .about .sec-ttl::before{
    margin-right: 7px;
    height: 20px;
    width: 20px;
  }
  .about p{
    font-size: 1.3rem;
    line-height: 1.71;
  }
  .about p span{
    display: inline-block;
  }
}


/* ==============================
運行コース・スポット紹介
================================= */
.course{
  background: url(../images/tokyo_bay_shuttle/bg_red.jpg) no-repeat top;
  background-size: cover;
  text-align: center;
}
.course .sec-inner{
  padding: 13% 60px 0;
  max-width: 1280px;
  box-sizing: border-box;
}
.course .sec-ttl{
  display: inline-block;
  padding-bottom: 10px;
  margin: 0 auto 66px;
  border-bottom: solid 3px;
  color: #fff;
}
.course .sec-content{
  padding-bottom: 120px;
}
.course .f-left{
  width: 52%;
  max-width: 595px;
}
.course .f-right{
  width: calc(48% - 5px);
}
.spot-link li{
  display: inline-block;
  margin: 0 10px 24px;
  width: calc(50% - 24px);
}
.spot-link a{
  display: inline-block;
  width: 100%;
  height: 76px;
  background: url(../images/tokyo_bay_shuttle/link.png) no-repeat center;
  background-size: contain;
  text-decoration: none;
}
.link-content{
  height: calc(100% - 7px);
  position: relative;
  box-sizing: border-box;
}
.course .place-num{
  display: inline-block;
  padding-top: 3px;
  position: absolute;
  background-color: #e43535;
  border-radius: 50%;
  box-sizing: border-box;
  height: 30px;
  width: 30px;
  color: #fff;
  font-size: 1.8rem;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  line-height: 1.3;
}
.course .place-name{
  display: inline-block;
  position: absolute;
  max-width: 160px;
  top: 50%;
  left: 47px;
  line-height: 1.5;
  font-size: 1.4rem;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  text-align: left;
}
.course .place-name span {
  display: inline-block;
}
.course .place-name .small{
  font-size: 1.4rem;
}

@media screen and (max-width: 980px){
  .course{
    background: url(../images/tokyo_bay_shuttle/bg_red_sp.jpg) #b42c2c no-repeat top;
    background-size: cover;
  }
  .course.sec-wrap{
    margin-bottom: 0;
  }
  .course .sec-inner{
    padding: 60px 15px 15px;
  }
  .course .sec-content{
    padding: 0;
  }
  .course .sec-ttl{
    margin-bottom: 28px;
    font-size: 2.2rem;
  }
  .course .f-left{
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
  .course .f-right{
    float: none;
    width: auto;
  }
  .spot-link li{
    margin: 7px auto;
    display: block;
    width: 290px;
  }
  .spot-link a{
    width: 100%;
    height: 56px;
    background: url(../images/tokyo_bay_shuttle/link_sp.png) no-repeat center;
    background-size: contain;
  }
  .link-content{
    height: calc(100% - 4px);
  }
  .course .place-num{
    padding-top: 1px;
    font-size: 1.5rem;
    height: 21px;
    width: 21px;
    left: 15px;
  }
  .course .place-name{
    max-width: 220px;
    left: 45px;
    line-height: 1.2;
  }
}


/* ==============================
スポット一覧
================================= */
.places{
  padding-top: 60px;
  overflow: hidden;
}
.place-detail{
  width: 100%;
  position: relative;
}
.place-detail::before{
  display: inline-block;
  content: "";
  height: 169px;
  width: 169px;
  background: url(../images/tokyo_bay_shuttle/bg_icon.png) no-repeat center;
  background-size: contain;
  top: -40px;
}

.places .pink-box{
  margin-bottom: 90px;
  padding: 60px;
  background: url(../images/tokyo_bay_shuttle/bg_pinkdot.jpg);
  
}
.pink-box .box-inner{
  max-width: 1100px;
}

@media screen and (min-width: 981px){
  /*フェードイン用スタイル*/
  .fadein{
    opacity: 0.1;
    transition: all 500ms;
  }
  .place-detail:nth-of-type(odd).fadein{
    transform: translate(50px, 0);
  }
  .place-detail:nth-of-type(even).fadein{
    transform: translate(-50px, 0);
  }
  .place-detail.fadein.scrollin{
    opacity: 1;
    transform: translate(0, 0);
  }

  /*奇数番目のボックス*/
  .place-detail:nth-of-type(odd) .pink-box{
    /*float: right;*/
    margin-left: 150px;
  }
  .place-detail:nth-of-type(odd) .text{
    float: left;
    width: 62%;
    padding-right: 30px;
    box-sizing: border-box;
  }
  .place-detail:nth-of-type(odd) .text-inner{
    margin-right: 50px;
  }
  .place-detail:nth-of-type(odd) .text > .box-ttl{
    margin-right: -200px;
  }
  .place-detail:nth-of-type(odd) .image-button{
    float: right;
  }
  .place-detail:nth-of-type(odd)::before{
    position: absolute;
    left: -60px;
  }

  /*偶数番目のボックス*/
  .place-detail:nth-of-type(even) .pink-box{
    margin-right: 150px;
  }
  .place-detail:nth-of-type(even) .pink-box .box-inner{
    margin-left: auto;
  }
  .place-detail:nth-of-type(even) .text{
    float: right;
    width: 62%;
    padding-left: 30px;
    box-sizing: border-box;
  }
  .place-detail:nth-of-type(even) .text > .box-ttl{
    margin-left: -200px;
    padding-left: 200px;
  }
  .place-detail:nth-of-type(even) .image-button{
    float: left;
  }
  .place-detail:nth-of-type(even)::before{
    position: absolute;
    right: -60px;
    transform: rotate( 90deg );
  }

}

.places .box-ttl{
  border-bottom: solid 3px;
  color: #e43535;
  margin-bottom: 40px;
  line-height: 2;
}
.places .place-num{
  display: inline-block;
  margin-right: 10px;
  background: url(../images/tokyo_bay_shuttle/icn_busstop.png) no-repeat center;
  background-size: contain;
  text-align: center;
  height: 80px;
  width: 40px;
  vertical-align: bottom;
}
.places .place-num span{
  display: inline-block;
  margin-top: -4px;
  padding: 1px 0px 0 1px;
  color: #fff;
  font-size: 2.3rem;
  font-weight: bold;
}
.places .place-name{
  display: inline-block;
  padding-bottom: 15px;
  color: #e43535;
  font-style: oblique;
  font-size: 3rem;
  font-weight: bold;
}
.places .place-name span{
  font-size: 1.8rem;
}
.places .text-inner{
  width: 100%;
  font-weight: bold;
  letter-spacing: -1rem;
}
.places .text-inner p{
  margin-bottom: 20px;
  letter-spacing: normal;
}

.places .image-button{
  width: 38%;
  max-width: 437px;
}
.places .image-button .image{
  width: 100%;
  margin-bottom: 25px;
}
.pink-box .white-box{
  display: inline-block;
  padding: 15px;
  background: #fff;
  box-sizing: border-box;
  letter-spacing: normal;
  vertical-align: top;
}
.pink-box .bus-stop.white-box{
  width: calc(50% - 5px);
  margin-right: 10px;
}
.pink-box .neighbor.white-box{
  width: calc(50% - 5px);
}
.pink-box .neighbor li{
  padding-left: 13px;
  position: relative;
}
.pink-box .neighbor li::before{
  content: "";
  margin-right: 7px;
  display: inline-block;
  height: 8px;
  width: 8px;
  background-color: #e43535;
  position: absolute;
  left: 0;
  top: 8px;
}
.pink-box .white-box .box-ttl{
  margin-bottom: 10px;
  /*padding-bottom: 5px;*/
  border-bottom: none;
  font-size: 1.8rem;
}

@media screen and (max-width: 980px){
  .places{
    padding-top: 20px;
  }
  .places .sec-inner{
    padding: 0 15px;
  }
  .places .pink-box{
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
  }
  .places .box-ttl{
    border-bottom: solid 2px;
  }
  /*背景のアイコン　偶数番目は回転*/
  .place-detail::before{
    z-index: 0;
    height: 100px;
    width: 100px;
    top: -20px;
  }
  .place-detail:nth-of-type(odd)::before{
    position: absolute;
    left: -40px;
  }
  .place-detail:nth-of-type(even)::before{
    position: absolute;
    right: -40px;
    transform: rotate( 90deg );
  }
  .places .pink-box{
    padding: 20px 15px 40px;
  }
  .places .place-num{
    height: 54px;
    width: 23px;
    margin-right: 6px;
  }
  .places .place-num span{
    margin: 0 0 0 -1px;
    font-size: 1.5rem;
    
  }
  .pink-box .place-name{
    padding-bottom: 10px;
    line-height: 1.2;
    font-size: 1.9rem;
    display: inline-block;
    width: 85%;
  }
  .pink-box .place-name span{
    display: inline-block;
  }
  .places .text-inner{
      width: 100%;
      font-weight: bold;
      letter-spacing: -1rem;
    }
  .places .text-inner p{
    margin-bottom: 20px;
  }
  .places .image.sp-view{
    margin: 0 auto 30px;
    width: 100%;
    max-width: 520px;
  }
  .pink-box .white-box .box-ttl{
    font-size: 1.4rem;
  }
  .pink-box .white-box.bus-stop{
    display: block;
    width: 100%;
    padding: 17px;
    margin-bottom: 7px
  }
  .white-box.bus-stop .box-content{
    max-width: 460px;
    margin: 0 auto;
  }
  .pink-box .white-box.neighbor{
    display: block;
    margin-bottom: 20px;
    padding: 17px;
    width: 100%;
  }
  .white-box.neighbor .box-content{
    font-size: 1.2rem;
  }
  .pink-box .neighbor li::before{
    margin: 0 4px 2px 0;
    height: 4px;
    width: 4px;
  }
  .places .image-button {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
  }
  .places .image-button .red-button{
    width: 100%;
  }
}


/* ==============================
共通ヘッダー用
================================= */

@media screen and (max-width: 980px){
.ttl-frame {
    padding: 90px 0 75px;
}
}


