@charset "UTF-8";
ul, li {
    list-style: none;
  }
  img {
    max-width:100%;
  }
  a {
    color:#000000;
    text-decoration: none;
  }
  a:hover{
    opacity: 0.8;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 100px;
    transition: background-color 0.3s ease;
    background-color: #3690C7;
  }
  
  #top header {
    position: fixed;
  }
  
  #top header.transparent {
    background-color: transparent;
  }
  
  header.scrolled {
    background-color: #3690c7b5;
    background-color: #3690c7;
  }
  header.UpMove{
    animation: UpAnime 0.5s forwards;
  }
  
  @keyframes UpAnime{
    from {
      opacity: 1;
    transform: translateY(0);
    }
    to {
      opacity: 0;
    transform: translateY(-100px);
    }
  }
  
  /*　下に下がる動き　*/
  
  header.DownMove{
    animation: DownAnime 0.5s forwards;
  }
  @keyframes DownAnime{
    from {
      opacity: 0;
    transform: translateY(-100px);
    }
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  
  .logo img {
    display: block;
    max-width: 300px;
  }
  
  nav {
    display: flex;
    align-items: center;
  }
  
  .nav-menu {
    list-style: none;
    display: flex;
    gap:20px;
  }
  .nav-menu a {
    color: white;
    font-size: 1em;
  }
  
  .hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
  }
  
  .btn-lang {
    position: relative;
  }
  
  .btn-lang a.language {
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 5px 10px;
    position: relative;
  }
  .btn-lang a.language:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/common/icon-globe.png);
    background-size: contain;
    vertical-align: sub;
    margin-right:5px;
  }
  .btn-lang a.language:hover,
  a.mypage-btn:hover {
    background-color: #000000;
    border: 2px solid #000000;
    transition: 0.6s ease;
    opacity: 1;
  }
  .btn-lang ul {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    list-style: none;
    margin: 0;
    padding: 0;
    top: calc(100% + 5px);
    left: 0;
    z-index: 1000;
  }
  
  .btn-lang ul li a {
    display: block;
    padding: 5px 10px;
    color: #333;
  }
  
  .btn-lang:hover ul {
    display: block;
  }
  
  .mypage-btn {
    padding: 5px 10px;
    border: 2px solid;
  }
  .mypage-btn:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/common/icon-user.png);
    background-size: contain;
    vertical-align: sub;
    margin-right:5px;
  }
  section.fbg {
    position: relative;
  }
  section.fbg:before,
  section.fbg:after {
    content: "";
    display: inline-block;
    width: 705px;
    height: 602px;
    background-image: url(../img/common/sectionbg.png);
    background-size: contain;
    position: absolute;
  }
  section.fbg:before {
    top:0;
    left:0;
  }
  section.fbg:after {
    transform: rotate(3.142rad);
    bottom:0;
    right:0;
  }
  section.flow .inner {
    position: relative;
    z-index:1;
  }
  a.morelink {
    background-color: #3690C7;
    color: #ffffff;
    padding: 20px 60px 20px 30px;
    font-weight: 600;
    position: relative;
    display: block;
    margin: auto;
    width: fit-content;
  }
  a.morelink:before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  
  #breadcrumbs ul {
    max-width: 1096px;
    margin: auto;
    display: flex;
    gap: 30px;
    font-size: 0.8em;
    align-items: center;
    padding: 5px;
  }
  #breadcrumbs ul li {
    position: relative;
  }
  #breadcrumbs ul li a:after {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    margin: auto 0 auto 10px;
  }
  
  #breadcrumbs ul li a img {
    /*padding-top: 6px;*/
  }
  
  footer {
    background-color: #DFEEF5; 
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    border: none !important;
    text-align: start !important;
  }
  
  footer:after {
    content: "";
    display: inline-block;
    width: 705px;
    height: 602px;
    background-image: url(../img/common/sectionbg.png);
    background-size: contain;
    position: absolute;
    transform: rotate(3.142rad);
    bottom: 0;
    right: 0;
  }
  img.footer-top {
    width: 100%;
    position: relative;
    z-index: 1;
  }
  footer .inner {
    width: 100%;
    max-width: 1096px;
    margin: 0 auto 100px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap:20px;
    padding:50px 10px;
  }
  footer .inner dl {
    width: calc(25% - 15px);
    line-height: 2;
  }
  footer .inner dl dt.flogo {
    padding-bottom: 20px;
  }
  footer .inner dl dt.guidebook a:before,
  footer .inner dl dt.busstop a:before,
  footer .inner dl dt.timetable a:before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url(../img/common/icon-guidebook_b.png);
    background-size: contain;
    vertical-align: sub;
    margin-right:5px;
  }
  footer .inner dl dt.timetable a:before {
    background-image: url(../img/common/icon-timetable_b.png);
  }
  footer .inner dl dt.busstop a:before {
    background-image: url(../img/common/icon-busstop_b.png);
  }
  footer .inner dl dt {
    font-size: 1.2em;
    font-weight: 600;
  }
  dt.flogo {
      padding-bottom: 20px;
  }
  footer .inner dl a {
    position: relative;
  }
  footer .inner dl dd a {
    padding-left: 25px;
  }
  footer .inner dl dd a:before {
    position: absolute;
    content: '';
    width: 15px;
    height: 5px;
    border-top: 3px solid #D9D9D9;
    top: 0;
    bottom: 0;
    margin: auto;
    left:0;
  }
  footer .inner ul.global li {
    display: flex;
    gap: 10px;
  }
  .footer-bottom {
    background-color: #3690C7;
    padding: 5px 10px;
    height: 30px;
  }
  .footer-bottom p {
    color: #ffffff;
    font-size: 0.9em;
  }
  .searcharea {
    position: fixed;
    bottom: 0;
    z-index: 2000;
    height: 150px;
    background-color: #00000099;
    width: 100%;
    padding: 15px;
  }
  .search {
    max-width: 1096px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .search ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width:70%;
    background-color: #ffffff;
  }
  .search ul li {
    width: calc(100% / 3);
    position: relative;
    background-image: url(../img/common/icon-up.png);
    background-position: center right 15%;
    background-repeat: no-repeat;
  }
  .search ul li#dateInput {
    background-image: url(../img/common/icon-calendar.png);
  }
  .search ul li:after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
        #ffffff 0%, #ffffff 20%, 
        #F1F1F1 20%, #F1F1F1 80%, 
        #ffffff 80%, #ffffff 100%);  
  }
  .search ul li:last-child:after{
    content:none;
  }
  .search ul li.pax {
    width: calc(30% / 2);
  }
  .search input, .search select {
    height: 80px;
    width: 100%;
    padding: 20px 20px 0;
    border: none;
    box-shadow: none;
  }
  .search input.datepicker {
    padding: 20px 20px 0 !important;
    background: #ffffff00 !important;
    width: 100% !important;
    font-weight: 300;
    border: none;
    box-shadow: none;
  }
  .search label {
    font-size: 0.8em;
    display: block;
    color: #9B9B9B;
    position: absolute;
    top: 15px;
    left: 20px;
  }
  .search button {
    width:30%;
    background-color: #ea5629;
    color: #ffffff;
    text-align: center;
    display: block;
  }
  /* デフォルトでは検索エリアを隠す */
  #searchForm {
    display: none;
  }
  #searchForm h2 {
    margin: 0 auto 10px;
    position: relative;
    display: block;
    padding: 0 30px;
    text-align: center;
    color: #ffffff;
    font-size: 1.4em;
    width: fit-content;
    text-shadow: 0 2px 0 #000000;
    font-weight: 300;
}
#searchForm h2:before, #searchForm h2:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 24px;
  height: 3px;
  background-color: #ffffff;
  -webkit-transform: rotate(-60deg);
  transform: translateY(-3px) rotate(-60deg);
  box-shadow: inset 0 1px 0 #000000;
}
#searchForm h2:before {
  left: 0;
  transform: translateY(-3px) rotate(60deg);
}
#searchForm h2:after {
  right: 0;
}
  /* PC表示時には常に表示 */
  @media (min-width: 768px) {
    #searchForm {
        display: block;
    }
  }
  /* モバイル表示時にボタンを表示 */
  .mobile-only {
    display: block;
  }
  @media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
  }
  #toggleSearch {
    position: fixed;
    bottom: 0; 
    z-index: 2001;
    right: 0;
    background: #f88139;
    color: #ffffff;
    padding: 15px;
    cursor: pointer;
    font-size: 1.1em;
    width:100%;
  }
  /* デフォルトで検索ボタンにアイコンを追加 */
  #toggleSearch:before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('../img/common/icon-search.png');
    background-size: contain;
    vertical-align: sub;
    margin-right: 5px;
  }
  
  /* 検索エリアが表示されているときにアイコンを非表示にする */
  #toggleSearch:not(.search-button):before {
    display: none;
  }
  
  
  @media (max-width: 768px) {
    header {
        height: 70px;
    }
    .logo img {
        height: 30px;
    }
    .nav-menu {
      display: flex;
      flex-direction: row;
      width: 100%;
      gap: 10px;
    }
    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }
    .hamburger-menu {
        display: none;
    }
    .nav-menu.active {
        display: flex;
    }
    section {
    //    padding: 50px 10px;
    }
  
    footer .inner {
        gap: 10px;
        font-size: 3.3vw;
        margin: 0 auto 30px;
    }
    footer .inner dl {
        width: calc(50% - 5px);
    }
    .searcharea {
        height: auto;
    }
    .search {
        display: block;
    }
    .search input, .search select {
        height: 70px;
    }
    .search ul {
        width: 100%;
    }
    .search ul li {
        background-position: center right 30px;
        width: 50%;
    }
    .search ul li#dateInput {
        width: 100%;
    }
    .search ul li.pax {
        width: 50%;
    }
    .search button {
        width: 100%;
        height: 50px;
    }
    section.fbg:before,
    section.fbg:after {
    width: 300px;
    height: 256px;
  }
  .btn-lang a.language:before,.mypage-btn:before {
    vertical-align: top;
    margin-right: 0px;
  }
  .langandmypage{
    display:none;
  }
  }
/**********************contenst*/
.ptitle {
    background-color: #E2F0F6;
    padding: 50px;
    border-bottom: 4px solid #428DD1;
  }
  .ptitle h2 {
    font-size: 1.8em;
    font-weight: 600;
    max-width: 1370px;
    margin: auto;
  }
  .innner {
    max-width: 1096px;
    margin: auto;
  }
  .rosenbtn .innner,
  .areabtn .innner {
    display: flex;
    flex-wrap: wrap;
    padding-top: 50px;
    align-items: center;
  }
  .rosenbtn .innner h3 {
    width: 50%;
    text-align: center;
    padding: 20px;
    font-size: 1.4em;
  }
  .areabtn .innner h3 {
    width: calc(100%/3);
    text-align: center;
    padding: 20px;
    font-size: 1.4em;
  }
  .rosenbtn .innner h3.act,
  .areabtn .innner h3.act{
    background-color: #F8F8F8;
    border-top: 3px solid #428DD1;
  }
  section.gwrap {
    background-color: #F8F8F8;
  }
  section.gwrap .innner .box {
    background-color: #ffffff;
    padding: 50px;
    margin-bottom:50px;
  }
  section.gwrap .innner .box h4 {
    position: relative;
    display: inline-block;
    padding: 0 65px;
    margin-bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4em;
  }
  section.gwrap .innner .box h4:before,
  section.gwrap .innner .box h4:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 45px;
    height: 2px;
    background-color: #D9D9D9;
  }
  section.gwrap .innner .box h4:before {
    left: 0;
  }
  section.gwrap .innner .box h4:after {
    right: 0;
  }
  
  .box.fare table {
    width: 100%;
    border-spacing: 0;
  }
  .box.fare table th {
    border: 1px solid #dddddd;
    border-right: none;
    padding: 10px;
    background-color: #F8F8F8;
    font-weight: 300;
  }
  .box.fare table td {
    border: 1px solid #dddddd;
    border-right: none;
    padding: 10px;
    text-align: center;
  }
  .box.fare table td:last-child {
    border-right: 1px solid #dddddd;
  }
  p.caution {
    background-color: #FFF6CF;
    border: 1px solid #ffd40d;
    border-radius: 5px;
    font-size: 0.8em;
    padding: 15px;
    margin-top: 30px;
  }
  
  .tabs {
    display: flex;
    justify-content: center;
    gap: 0 20px;
    flex-wrap: wrap;
  }
  .tab_item {
    width: calc(100%/3);
    height: 60px;
    border:1px dotted #428DD1;
    border-bottom: none;
    line-height: 60px;
    font-size: 1.2em;
    text-align: center;
    display: block;
    font-weight: 600;
    transition: all 0.2s ease;
  }
  .tab_item:hover {
    opacity: 0.75;
  }
  
  input[name="tab_item"] {
    display: none;
  }
  
  .tab_content {
    width:100%;
    border:1px solid #428DD1;
    display: none;
    padding: 40px;
    clear: both;
    overflow: hidden;
  }
  
  #arrchatan:checked ~ #arrchatan_content,
  #depchatan:checked ~ #depchatan_content {
    display: block;
  }
  
  .tabs input:checked + .tab_item {
  background-color: #3690C7;
  color: #ffffff;
  }
  
  .tab_content table {
    width: 100%;
    border-spacing: 0;
  }
  .tab_content table th {
    border: 1px solid #dddddd;
    border-right: none;
    padding: 10px;
    background-color: #F8F8F8;
    font-weight: 300;
  }
  .tab_content table td {
    border: 1px solid #dddddd;
    border-right: none;
    padding: 10px;
    border-top: none;
    text-align: center;
  }
  .tab_content table th:last-child,
  .tab_content table td:last-child {
    border-right: 1px solid #dddddd;
  }
  .js-objectfit{overflow:hidden}.js-objectfit img{width:100%;height:100%;object-fit:cover;font-family:'object-fit: cover; object-position: center;'}.js-toggle-tit{cursor:pointer;position:relative}.js-toggle-tit.on .icon span:nth-of-type(2){opacity:0}.js-toggle-tit .icon{border-radius:50%;bottom:0;height:19px;margin:auto;position:absolute;right:15px;top:0;width:19px}.js-toggle-tit .icon span{bottom:0;display:block;height:1px;left:0;position:absolute;margin:auto;right:0;transition:all .2s linear;-webkit-transition:all .2s linear;top:0;width:80%}.js-toggle-tit .icon span:nth-of-type(2){-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.js-toggle-tit .icon.iconNavy{background:#214280}.js-toggle-tit .icon.iconNavy span{background:#fff}.js-toggle-tit .icon.iconWhite{background:#fff}.js-toggle-tit .icon.iconWhite span{background:#214280}.js-toggle-tit .icon.iconGreen{background:#fff}.js-toggle-tit .icon.iconGreen span{background:#0180ab}@media screen and (min-width:600px){.js-toggle-tit{cursor:default;pointer-events:none}.js-toggle-tit:hover{opacity:1}}.js-toggle-tit2{cursor:pointer;position:relative}.js-toggle-tit2.on .icon span:nth-of-type(2){opacity:0}.js-toggle-tit2 .icon{bottom:0;margin:auto;position:absolute;right:15px;top:0;width:19px}.js-toggle-tit2 .icon span{bottom:0;display:block;height:2px;left:0;position:absolute;margin:auto;right:0;transition:all .2s linear;-webkit-transition:all .2s linear;top:0;width:80%}.js-toggle-tit2 .icon span:nth-of-type(2){-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.js-toggle-tit2 .icon.iconNavy span{background:#fff}.js-toggle-content{display:none}@media screen and (min-width:600px){.js-toggle-content{height:100%!important;display:block!important}}.js-toggle-content2{display:none}.js-toggle-content-conditions{display:none}.js-date-return{display:none}.js-appear{opacity:1;visibility:visible;transition:.2s}
  /* PC・SP表示 */
  .pc-only{display: block;}
  .sp-only{display: none;}
  @media screen and (max-width: 768px){
  .pc-only{display: none;}
  .sp-only{display: block;} 
  }