﻿@charset "UTF-8";
/*reset
========*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block; }

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.clearfix {
  zoom: 1; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 500; }

li {
  list-style: none; }

*, *:before, *:after {
  box-sizing: border-box; }

/* ----------------------------------- //
//      CSS Hacks Mixins for Sass
// ----------------------------------- //

	How to use:

	@include [Mixin_Name]( 'selector', (property: value) )

	Example:

	@include only_ie9( '.my_element', (color: red) )
	@include only_ff28_above( '.my_element', (
		background-color: green,
		display: flex,
		margin: 2em,
	))

	Tips:
	  - Use firefox mixins before IE mixins. Sometimes Firefox wants to precess the IE css but it can't and skips it's own CSS!

// ----------------------------------- //

	List of Mixins:

	only_ff
	only_ff2
	only_ff2_above
	only_ff3_above
	only_ff6_above
	only_ff16_above
	only_ff21_above
	only_ff24_above
	only_ff25_above
	only_ff26_above
	only_ff27_above
	only_ff28_above
	only_ff30_above
	only_webkit
	only_chrome
	only_safari
	only_safari9
	only_ios
	only_safari_no_ios
	only_opera9_safari2
	only_opera
	only_opera11
	only_edge
	only_ie6
	only_ie7
	only_ie7_below
	only_ie8
	only_ie8_below
	only_ie9
	only_ie9_below
	only_ie10_above
	only_ie11
	only_ie11_above
	no_ie6
	only_ie9_saf4_above
	no_ie_safari6

// ----------------------------------- */
/* ----------------------------------- //
//          Firefox CSS Hacks
// ----------------------------------- */
/*--- Only Firefox ---*/
/*--- Only Firefox 1.5 and Firefox 2 ---*/
/*--- Only Firefox 竕･ 2 ---*/
/*--- Only Firefox 竕･ 3 ---*/
/*--- Only Firefox 竕･ 6 ---*/
/*--- Only Firefox 竕･ 16 ---*/
/*--- Only Firefox 竕･ 21 ---*/
/*--- Only Firefox 竕･ 24 ---*/
/*--- Only Firefox 竕･ 25 ---*/
/*--- Only Firefox 竕･ 26 ---*/
/*--- Only Firefox 竕･ 27 ---*/
/*--- Only Firefox 竕･ 28 ---*/
/*--- Only Firefox 竕･ 30 ---*/
/* ----------------------------------- //
//          Webkit CSS Hacks
// ----------------------------------- */
/*--- Only Webkit (Chrome, Safari, Opera 竕･ 14) ---*/
/*--- Only Chrome 28+, Opera 竕･ 14 ---*/
/*--- Only Safari 竕･ 6.1 ---*/
/*--- Only Safari 竕･ 9 ---*/
/*--- Only iOS Safari 竕･ 9 ---*/
/*--- Only Safari 竕･ 9 (Non iOS) ---*/
/*--- Only Opera 竕､ 9.27, Safari 竕､ 2 ---*/
/* ----------------------------------- //
//           Opera CSS Hacks
// ----------------------------------- */
/*--- Only Opera 竕･ 9.5 ---*/
/*--- Only Opera 竕､ 11 ---*/
/* ----------------------------------- //
//     Edge CSS Hacks
// ----------------------------------- */
/* ----------------------------------- //
//     Internet Explorer CSS Hacks
// ----------------------------------- */
/*--- Only IE 竕､ 6 ---*/
/*--- Only IE7 ---*/
/*--- Only IE 竕､ 7 ---*/
/*--- Only IE8 ---*/
/*--- Only IE 竕､ 8 ---*/
/*--- Only IE9 ---*/
/*--- Only IE 竕､ 9 ---*/
/*--- Only IE10 ---*/
/*--- Only IE 竕､ 11 ---*/
/*--- Only IE 竕･ 11 ---*/
/*--- Anything but IE6 ---*/
/*--- Only IE 竕･ 9, safari4, android 竕･ 2.3 ---*/
/* ----------------------------------- //
//           Other CSS Hacks
// ----------------------------------- */
/*--- Everything but IE and Safari 竕､ 6 ---*/
a.imganime img {
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s; }

a.imganime:hover img {
  opacity: .8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; }

.alignleft {
  text-align: left; }

.alignright {
  text-align: right; }

.aligncenter {
  text-align: center; }

.floatLeft {
  float: left; }

.floatRight {
  float: right; }

.clear {
  clear: both; }

.centerBlock {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.flex-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.table-parent {
  display: table; }

.table-parent .table-child {
  display: table-cell; }

.clearfix {
  zoom: 1; }

.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.mTop0 {
  margin-top: 0 !important; }

.mTop10 {
  margin-top: 10px !important; }

.mTop20 {
  margin-top: 20px !important; }

.mTop30 {
  margin-top: 30px !important; }

.mTop40 {
  margin-top: 40px !important; }

.mTop50 {
  margin-top: 50px !important; }

.mBtm0 {
  margin-bottom: 0 !important; }

.mBtm10 {
  margin-bottom: 10px !important; }

.mBtm15 {
  margin-bottom: 15px !important; }

.mBtm20 {
  margin-bottom: 20px !important; }

.mBtm30 {
  margin-bottom: 30px !important; }

.mBtm40 {
  margin-bottom: 40px !important; }

.mBtm50 {
  margin-bottom: 50px !important; }

.mBtm05em {
  margin-bottom: 0.5em !important; }

.mBtm1em {
  margin-bottom: 1em !important; }

.mBtm15em {
  margin-bottom: 1.5em !important; }

.mBtm2em {
  margin-bottom: 2em !important; }

.mBtm3em {
  margin-bottom: 3em !important; }

.pad10 {
  padding: 10px !important; }

.pad15 {
  padding: 15px !important; }

.pad20 {
  padding: 20px !important; }

.pad25 {
  padding: 25px !important; }

.pad30 {
  padding: 30px !important; }

.pad40 {
  padding: 40px !important; }

.pad70 {
  padding: 70px !important; }

.displayTable {
  display: table;
  width: 100%;
  table-layout: fixed; }

.tableCell {
  display: table-cell;
  vertical-align: middle; }

.hide {
  display: none; }

.show {
  display: block; }

.noWrap {
  white-space: nowrap; }

.bold {
  font-weight: bold; }

.normal {
  font-weight: 500; }

small {
  font-size: 11px;
  font-size: 11px;
  font-size: 1.1rem; }

strong {
  font-weight: bold; }

.color-black {
  color: #000000; }

.color-white {
  color: #fff; }

.font10 {
  font-size: 10px;
  font-size: 10px;
  font-size: 1.0rem; }

.font12 {
  font-size: 12px;
  font-size: 12px;
  font-size: 1.2rem; }

.font14 {
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem; }

.font16 {
  font-size: 16px;
  font-size: 16px;
  font-size: 1.6rem; }

.font18 {
  font-size: 18px;
  font-size: 18px;
  font-size: 1.8rem; }

.font20 {
  font-size: 20px;
  font-size: 20px;
  font-size: 2.0rem; }

.font22 {
  font-size: 22px;
  font-size: 22px;
  font-size: 2.2rem; }

.font24 {
  font-size: 24px;
  font-size: 24px;
  font-size: 2.4rem; }

.font26 {
  font-size: 26px;
  font-size: 26px;
  font-size: 2.6rem; }

.font28 {
  font-size: 28px;
  font-size: 28px;
  font-size: 2.8rem; }

.font30 {
  font-size: 30px;
  font-size: 30px;
  font-size: 3.0rem; }

.font32 {
  font-size: 32px;
  font-size: 32px;
  font-size: 3.2rem; }

.gothic {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック","MS PGothic", sans-serif; }

.mincho {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN","游明朝", YuMincho, "ＭＳ Ｐ明朝","MS PMincho", serif;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1);
  -webkit-text-stroke-width: 0.1px; }

.serif {
  font-family: "Times New Roman", Garamond, Century, serif; }

.sans {
  font-family: Arial, Helvetica, Tahoma, sans-serif; }

.bgWhite {
  background: #fff; }

.bgBlack {
  background: #000; }

.bgGray01 {
  background: #e0e0e0; }

.bgGray02 {
  background: #ccc; }

.showMark {
  padding-left: 1em;
  margin-left: .5em; }

.showMark li {
  list-style: decimal; }

.hideMark {
  padding-left: 0; }

.hideMark li {
  list-style: none; }

.headCaution {
  padding: 10px 0;
  background: #ffcc66;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100; }

.headCaution p {
  width: 960px;
  display: block;
  margin: 0 auto;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  background: url("../img/portal/caution.png") 0 50% no-repeat;
  padding: 5px 25px; }

table {
  border-collapse: collapse; }

th, td {
  border: none; }

table .odd {
  background: #eee; }

.clickBox {
  cursor: pointer;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s; }

blockquote {
  background: #fff;
  padding: 40px 20px;
  position: relative;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 2em; }

blockquote:before,
blockquote:after {
  content: "”";
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #bbb;
  font-size: 40px;
  font-weight: bold;
  line-height: 60px;
  width: 40px;
  height: 40px;
  position: absolute; }

blockquote:before {
  text-align: left;
  top: 0px;
  left: 10px; }

blockquote:after {
  text-align: right;
  bottom: 0px;
  right: 20px; }

.flexImg {
  max-width: 100%;
  height: auto; }

.show-sm-block {
  display: none; }

.show-md-block {
  display: none; }

.only-sp-block {
  display: none; }

.only-pc-block {
  display: block; }

/*
* ================
* fonts
* ================
*/
@font-face {
  font-family: 'icomoon';
  src: url("fonts/icomoon.eot?lbcxav");
  src: url("fonts/icomoon.eot?lbcxav#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?lbcxav") format("truetype"), url("fonts/icomoon.woff?lbcxav") format("woff"), url("fonts/icomoon.svg?lbcxav#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-bus:before {
  content: "\e900"; }

.icon-calendar:before {
  content: "\e901"; }

.icon-car:before {
  content: "\e902"; }

.icon-hotel:before {
  content: "\e903"; }

.icon-map:before {
  content: "\e904"; }

.icon-news:before {
  content: "\e905"; }

.icon-train:before {
  content: "\e906"; }

.icon-weather:before {
  content: "\e907"; }

html {
  font-size: 62.5%; }

body {
  height: 100%;
  min-height: 100%;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN","メイリオ", Meiryo, "ＭＳ Ｐゴシック","MS PGothic", Helvetica,Arial,Verdana,sans-serif;
  font-weight: 400;
  position: relative;
  -webkit-text-size-adjust: 100%; }

/*
* ================
* common
* ================
*/
a {
  color: #3fbbb9;
  text-decoration: none; }

a:hover {
  text-decoration: underline; }

img {
  max-width: 100%;
  height: auto; }

.fade {
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s; }

.fade:hover {
  opacity: .8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; }

.btn_blue {
  background: #2eb6b3;
  border: none;
  color: #fff;
  text-align: center;
  height: 30px;
  line-height: 30px;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN","メイリオ", Meiryo, "ＭＳ Ｐゴシック","MS PGothic", Helvetica,Arial,Verdana,sans-serif;
  cursor: pointer;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s; }

.btn_blue:hover {
  background: #47d0cd;
  text-decoration: none; }

.portal_contant {
  font-size: 13px;
  font-size: 1.3rem; }

.head_img {
  position: relative; }

.head_bg {
  position: relative;
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 186px;
  top: 0; }

.head_bg:before {
  content: "";
  position: absolute;
  top: 10px;
  right: 50%;
  margin-right: 440px;
  height: 176px;
  width: 30%;
  z-index: 0;
  background: url("../img/portal/search/head-bg-left.jpg") center center/cover no-repeat; }

.head_bg:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: 440px;
  height: 176px;
  width: 30%;
  z-index: 0;
  background: url("../img/portal/search/head-bg-right.jpg") center center/cover no-repeat; }

.page_title {
  width: 860px;
  height: 210px;
  text-align: center;
  margin: auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 10px solid #fff;
  position: relative;
  z-index: 10;
  top: -34px;
  box-sizing: content-box; }

.page_title h2 {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: bold;
  color: #FFF;
  position: relative;
  display: inline-block;
  padding-top: 85px; }

.page_title h2 span {
  position: relative;
  padding-left: 50px; }

.page_title h2 span:before {
  content: "";
  width: 35px;
  height: 35px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  position: relative;
  top: 5px;
  margin-right: 15px;
  position: absolute;
  left: 0;
  top: 0; }

/*
* ================
* top
* ================
*/
.container {
  width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: content-box; }

#portalHeader {
  padding-bottom: 40px; }

#gsc input.gsc-search-button,
#gsc table.gsc-search-box td,
#gsc table.gsc-search-box input {
  box-sizing: content-box; }

.main_visual {
  border-top: 10px solid #fff;
  position: relative;
  min-width: 1140px;
  padding: 0 20px; }

.main_visual:after {
  content: "";
  width: 100%;
  height: 540px;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../img/portal/top/head-bg.jpg") center center/cover no-repeat;
  z-index: 0; }

/* swiper setting*/
.swiper-container {
  width: 860px;
  height: 573px;
  border: 10px solid #fff;
  position: relative;
  top: -42px;
  margin-bottom: -42px;
  box-sizing: content-box; }

.swiper-slide {
  width: 100%;
  height: 573px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-color: #FFF; }

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 65px; }

.swiper-pagination-bullet {
  background: #2EB6B3;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; }

.swiper-pagination-bullet-active {
  background: #FFF; }

.top_infos {
  background: transparent url("../img/portal/bg_portal.png") repeat scroll 0 0;
  padding-top: 90px;
  margin-top: 10px;
  position: relative; }

.top_infos .container {
  position: relative; }

.top_linkBtn {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  left: 0;
  top: -220px;
  z-index: 10;
  width: 100%;
  padding: 0 20px;
  font-size: 0; }

.top_linkBtn a {
  background: #FFF;
  display: block; }

.top_linkBtn a img {
  font-size: 16px;
  font-size: 1.6rem;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s; }

.top_linkBtn a:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; }

.top_linkBtn a:hover img {
  opacity: .7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; }

/* information
=============================*/
.top_infos_row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px; }

/* =========== ニュース ===========*/
.top_news {
  width: 49.12281%;
  background: #FFF;
  padding: 25px 30px 0;
  box-shadow: 1px 1px 0 0 #E1C793; }

.top_news .info_headline {
  text-align: center;
  margin-bottom: 5px; }

.top_news .info_headline strong {
  position: relative;
  top: -10px;
  padding-left: 15px; }

.top_news .icon-news {
  font-size: 70px;
  font-size: 7rem;
  top: 10px;
  display: inline-block; }

.top_news li {
  border-bottom: 1px solid #F2F2F2;
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative; }

.top_news li a {
  font-weight: bold; }

.top_news time {
  display: inline-block;
  margin-right: 1em; }

.info_headline {
  color: #427327;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: bold; }

.top_info_bnr {
  width: 49.12281%;
  font-size: 0; }

.top_info_bnr a {
  margin-bottom: 20px;
  display: block;
  box-shadow: 1px 1px 0 0 #E1C793; }

.top_info_bnr a:last-child {
  margin-bottom: 0; }

.top_info_bnr img {
  max-width: 100%;
  height: auto; }

.top_infos_row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.top_infos_row2 .info_headline {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  margin-top: 25px;
  margin-bottom: 12px; }

.top_infos_row2 .info_headline span {
  font-size: 63px;
  font-size: 6.3rem;
  margin-right: 5px; }

.top_infos_row2 .info_headline strong {
  position: relative;
  top: -10px; }

.top_infos_row2_items {
  background: #FFF;
  width: 270px;
  height: 270px;
  margin-bottom: 40px;
  position: relative;
  box-shadow: 1px 1px 0 0 #E1C793; }

.top_infos_row2_items .btn_blue {
  display: block;
  width: 100%;
  height: 35px;
  line-height: 35px;
  font-size: 14px;
  font-size: 1.4rem; }

/* =========== お宿検索 ===========*/
.top_hotel {
  padding: 0 23px; }

.top_hotel input[type="text"] {
  text-align: center;
  padding: .1em;
  border: 2px solid #f3f3f3;
  margin-right: .2em;
  box-sizing: content-box; }

.top_hotel select {
  margin: 0 .5em; }

.top_hotel .btn_blue {
  letter-spacing: .8em;
  position: absolute;
  bottom: 23px;
  left: 23px;
  width: 224px; }

.hotel_row {
  margin-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  vertical-align: middle; }

#hotel_input_year {
  width: 4em; }

#hotel_input_month {
  width: 2em; }

#hotel_input_day {
  width: 2em; }

/* =========== 天気 ===========*/

.top_weather p {
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 8px;
  text-align: center; }

.top_weather .weather {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 210px;
  margin: auto; }

.top_weather .subWea {
  width: 50%;
  text-align: left;
  padding-left: 15px; }

.top_weather .subWea span {
  font-size: 14px;
  font-size: 1.4rem;
  position: relative;
  top: -8px;
  margin-right: 8px; }

.top_weather .subWea p {
  text-align: left; }

.top_weather .subWea .temp {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: normal;
  margin-right: 10px; }

.top_weather .subWea02 {
  position: relative; }

.top_weather .subWea02:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -18px;
  height: 37px;
  width: 2px;
  background: #F9F9F9; }

.top_weather .weather-link {
  width: 210px;
  margin: auto; }

.top_weather .weather-link li {
  display: block;
  margin-bottom: 5px; }

.top_weather .weather-link li a {
  display: block;
  border: 1px solid #CFEEED;
  padding: 8px 14px;
  color: #666666;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  border-radius: 5px;
  position: relative; }

.top_weather .weather-link li a:after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  height: 20px;
  margin-top: -10px;
  background-position: right center;
  background-repeat: no-repeat; }

.top_weather .weather-link li a:hover {
  text-decoration: none;
  background: #CFEEED; }

.top_weather .weather-link li .to-weathernews:after {
  width: 86px;
  background-image: url("../img/portal/top/weathernews.png"); }

.top_weather .weather-link li .to-roadinfo:after {
  width: 38px;
  background-image: url("../img/portal/top/roadinfo.png"); }

.top_kusatsutimes, .top_twitter {
  font-size: 12px;
  font-size: 1.2rem; }

.top_kusatsutimes h2, .top_twitter h2 {
  height: 45px;
  border-bottom: 1px solid #eee;
  line-height: 45px;
  padding: 0 1em; }

.top_twitter {
  position: relative; }

.top_twitter h2 {
  border: none; }

.tw_btn {
  position: absolute;
  right: 12px;
  top: 12px; }

/* =========== 草津タイムズ ===========*/
.kusatsutimes_body {
  padding: 22px 22px 0;
  line-height: 175%; }

.kusatsutimes_body p {
  margin-bottom: 1em; }

.kusatsutimes_body .btn_blue {
  position: absolute;
  bottom: 23px;
  left: 23px;
  width: 224px; }

/* calendar
===================*/
.top_calendar {
  padding-top: 50px;
  padding-bottom: 40px; }

.calender_headline {
  font-size: 20px;
  font-size: 2.0rem;
  color: #68E;
  text-align: center; }

.calender_headline .icon-calendar {
  font-size: 58px;
  font-size: 5.8rem;
  margin-right: 10px; }

.calender_headline strong {
  position: relative;
  top: -5px; }

.calendar-wrap {
  max-width: 1140px;
  min-width: 200px;
  margin: 2.0833% auto; }

.gcal {
  position: relative;
  padding-bottom: 650px;
  height: 0;
  overflow: hidden; }

.gcal iframe {
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%; }

/* bunner parade
=====================*/
.bnr_parade {
  background: #D3E6CD;
  padding: 40px 40px 20px;
  overflow: hidden; }

.bnr_parade a {
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s; }

.bnr_parade ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.bnr_parade li {
  margin-bottom: 20px;
  box-shadow: 1px 1px 0 0 #95c387;
  font-size: 0; }

/* 草津温泉へのアクセス
=====================*/
.how_to_access {
  background: url("../img/portal/top/footbg.jpg") center center/cover no-repeat;
  padding-top: 50px; }

.how_to_access .lead_text {
  color: #FFF;
  line-height: 153.84615%;
  margin-bottom: 2em;
  text-align: center; }

.how_to_access ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 55px; }

.how_to_access li {
  width: 350px;
  height: 250px;
  background: #ECE8D3;
  padding: 20px;
  position: relative; }

.how_to_access li p {
  line-height: 169.23077%;
  margin-bottom: 1em; }

.how_to_access li .btn_blue {
  position: absolute;
  width: 310px;
  bottom: 20px;
  left: 20px; }

.how_to_access .access_item_headline {
  color: #2eb6b3;
  font-size: 20px;
  font-size: 2rem;
  text-align: center; }

.how_to_access .access_item_headline span {
  font-size: 60px;
  font-size: 6rem;
  font-size: 55px;
  font-size: 5.5rem; }

.how_to_access .access_item_headline strong {
  position: relative;
  top: -15px; }

.access_headline {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 20px; }

.access_headline .icon-map {
  font-size: 60px;
  font-size: 6rem;
  margin-right: 10px; }

.access_headline strong {
  position: relative;
  top: -8px; }

.access_bus_box {
  background: #FFF;
  border: 1px solid #2eb6b3;
  padding: 10px 20px;
  font-weight: bold;
  line-height: 160%;
  margin-bottom: 10px; }

.access_bus_box strong {
  display: block;
  color: #2eb6b3; }

/* =========== googleマップ ===========*/
.gmap_wrap {
  position: relative; }

.gmap_wrap .btn_blue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 350px;
  margin-left: -175px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  font-size: 1.8rem; }

#gmap {
  width: 100%;
  height: 410px; }

.result_list {
  min-height: 800px; }

#search_contentWrap .page_title {
  background-image: url("../img/portal/search/head-img.jpg"); }

#search_contentWrap .page_title h2 span:before {
  background-image: url("../img/portal/search/icon-search.png"); }

#hotnews_contentWrap .page_title {
  background-image: url("../img/portal/hotnews/head-img.jpg"); }

#hotnews_contentWrap .page_title h2 span {
  padding-left: 90px; }

#hotnews_contentWrap .page_title h2 span:before {
  width: 80px;
  height: 72px;
  top: -20px;
  background-image: url("../img/portal/hotnews/icon-hotnews.png"); }

.hotnews_post {
  margin-bottom: 70px; }

.hotnews_head {
  background: #CFEEED;
  padding: 0 140px 0 0px;
  display: table;
  width: 100%;
  vertical-align: middle;
  margin-bottom: 50px; }

.hotnews_head .hotnews_icon {
  display: table-cell;
  width: 140px;
  vertical-align: middle;
  padding: 15px 0; }

.hotnews_head .hotnews_icon:before {
  content: "";
  width: 140px;
  height: 70px;
  background: url("../img/portal/hotnews/icon-hotnews.png") center center no-repeat;
  display: inline-block;
  vertical-align: middle; }

.hotnews_head .hotnews_tilte {
  display: table-cell;
  padding: 15px 0;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  vertical-align: middle;
  line-height: 150%; }

.hotnews_head .hotnews_date {
  display: table-cell;
  width: 147px;
  text-align: center;
  position: relative;
  vertical-align: middle; }

.hotnews_head .hotnews_date strong {
  position: relative;
  z-index: 10; }

.hotnews_head .hotnews_date:before {
  content: "";
  width: 147px;
  height: 60px;
  border: 1px solid #000;
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 0; }

.hotnews_head .hotnews_date:after {
  content: "";
  width: 132px;
  height: 70px;
  background: #CFEEED;
  position: absolute;
  left: 8px;
  top: 10px;
  z-index: 2; }

.hotnews_body {
  width: 860px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  font-size: 1.4rem; }

.hotnews_text {
  line-height: 200%;
  width: 410px; }

.hotnews_text p {
  margin-bottom: 1em; }

.hotnews_text .hotnews_url, .hotnews_text .hotnews_pdf {
  display: inline-block;
  color: #000;
  text-decoration: underline;
  padding-left: 40px;
  position: relative; }

.hotnews_text .hotnews_url:before, .hotnews_text .hotnews_pdf:before {
  content: "";
  width: 40px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0; }

.hotnews_text .hotnews_links li {
  display: block; }

.hotnews_text .hotnews_url:before {
  background: url("../img/portal/hotnews/icon-link.png") center center no-repeat; }

.hotnews_text .hotnews_pdf:before {
  background: url("../img/portal/hotnews/icon-pdf.png") center center no-repeat; }

.hotnews_image {
  text-align: center; }

.hotnews_image img {
  border: 5px solid #2eb6b3; }

.hotnews_pager {
  text-align: center;
  font-weight: bold;
  margin-bottom: 65px;
  padding: 0 10px; }

.hotnews_pager .page_no {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #cfeeed;
  border-radius: 3px; }

.hotnews_pager .current {
  background: #f2f2f2;
  color: #000; }

.hotnews_pager .page_link {
  color: #2eb6b3;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  margin: 5px 2px; }

.hotnews_pager .page_link:hover {
  text-decoration: none; }

.hotnews_pager .page_btn {
  margin: 5px 2px;
  background: #2EB6B3;
  color: #fff;
  width: 100px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  border-radius: 3px;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s; }

.hotnews_pager .page_btn:hover {
  text-decoration: none; }

@media only screen and (max-width: 767px){
  .hidden-sm{
    display: none; }
  .hidden-sm-md{
    display: none; }
  .show-sm-block{
    display: block; }
  .only-sp-block{
    display: block; }
  .only-pc-block{
    display: none; }
  .portal_contant{
    font-size: 1.2rem; }
  .head_img{
    margin-bottom: 35px; }
  .head_bg:before{
    display: none; }
  .head_bg:after{
    display: none; }
  .page_title{
    border: none;
    width: 100%;
    height: 110px;
    top: 0;
    line-height: 100%; }
  .page_title h2{
    line-height: 100%;
    font-size: 1.6rem;
    padding-top: 75px; }
  .page_title h2 span{
    padding-left: 25px; }
  .page_title h2 span:before{
    width: 18px;
    height: 18px;
    top: 3px;
    margin-right: 8px; }
  .container{
    max-width: 100%;
    width: auto;
    padding-left: 10px;
    padding-right: 10px; }
  #portalHeader{
    padding-bottom: inherit; }
  .main_visual{
    min-width: 100%;
    border: none;
    padding: 0; }
  .main_visual:after{
    display: none; }
  .swiper-container{
    width: 100%;
    height: 350px;
    top: 0;
    margin-bottom: 0;
    border: none; }
  .swiper-slide{
    height: 350px; }
  .swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
    display: none; }
  .top_infos{
    padding-top: 0;
    margin-top: 35px; }
  .top_linkBtn{
    position: relative;
    padding: 0;
    top: -60px;
    margin-bottom: -50px; }
  .top_linkBtn li{
    width: 48.33333%; }
  .link_btn_furusato{
    margin-bottom: 20px; }
  .top_infos_row1{
    display: block; }
  .top_news{
    width: 100%;
    padding: 20px 0 0;
    margin-bottom: 20px; }
  .top_news .info_headline{
    font-size: 1.6rem; }
  .top_news .icon-news{
    font-size: 6rem; }
  .top_news li{
    height: auto;
    line-height: auto;
    font-size: 1.2rem; }
  .top_news li:first-child{
    border-top: 1px solid #F2F2F2; }
  .top_news li a{
    width: 100%;
    display: block;
    padding: 0 20px 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #666; }
  .top_news time{
    position: absolute;
    bottom: -5px;
    left: 20px;
    color: #B3B3B3; }
  .info_headline{
    font-size: 1.6rem; }
  .top_info_bnr{
    width: 100%; }
  .top_info_bnr a{
    margin-bottom: 10px; }
  .top_infos_row2{
    display: block;
    padding-bottom: 1px; }
  .top_infos_row2 .info_headline{
    font-size: 1.6rem; }
  .top_infos_row2_items{
    width: 100%;
    height: auto;
    padding-bottom: 35px; }
  .top_hotel{
    padding-top: 25px; }
  .top_hotel .btn_blue{
    position: static;
    width: 225px;
    margin: auto; }
  .hotel_row{
    width: 225px;
    margin: auto auto 20px; }
  .top_weather{
    padding-top: 35px; }
  .to-weathernews.only-pc-block{
    display: none !important; }
  .to-weathernews.only-sp-block{
    display: block !important; }
  .top_twitter{
    padding-bottom: 0; }
  .kusatsutimes_body .btn_blue{
    position: static;
    width: 225px;
    margin: auto; }
  .top_calendar{
    padding-top: 25px; }
  .calender_headline{
    font-size: 1.6rem;
    color: #427327;
    margin-bottom: 20px; }
  .calender_headline .icon-calendar{
    font-size: 4.8rem; }
  .gcal{
    padding-bottom: 400px; }
  .bnr_parade{
    padding: 25px 0; }
  .bnr_parade .container{
    padding: 0 5px; }
  .bnr_parade ul{
    display: block;
    text-align: center;
    font-size: 0; }
  .bnr_parade li{
    width: 145px;
    margin: 5px;
    display: inline-block; }
  .how_to_access{
    padding-top: 25px;
    padding-bottom: 30px; }
  .how_to_access .lead_text{
    text-align: left;
    padding: 0 1em; }
  .how_to_access ul{
    display: block;
    margin-bottom: 10px; }
  .how_to_access li{
    width: 100%;
    height: auto;
    margin-bottom: 10px; }
  .how_to_access li p{
    padding: 0 1em;
    font-size: 1rem; }
  .how_to_access li .btn_blue{
    position: static;
    display: block;
    width: 100%; }
  .how_to_access .access_item_headline{
    font-size: 1.6rem; }
  .access_headline{
    font-size: 1.6rem; }
  .access_headline .icon-map{
    font-size: 4rem; }
  .gmap_wrap{
    padding: 0 10px; }
  .gmap_wrap .btn_blue{
    position: static;
    margin: auto;
    display: block;
    width: 260px;
    font-size: 1.4rem;
    height: 37px;
    line-height: 37px; }
  #gmap{
    height: 200px;
    margin-bottom: 10px; }
  #hotnews_contentWrap .page_title h2 span{
    padding-left: 45px; }
  #hotnews_contentWrap .page_title h2 span:before{
    width: 40px;
    height: 36px;
    top: -10px; }
  .hotnews_head{
    display: block;
    padding: 15px 20px;
    margin: 0 -10px 35px;
    width: auto; }
  .hotnews_head .hotnews_icon{
    display: none; }
  .hotnews_head .hotnews_tilte{
    display: block;
    padding: 0;
    font-size: 1.5rem;
    margin-bottom: 10px; }
  .hotnews_head .hotnews_date{
    display: block;
    width: auto;
    width: 104px;
    height: 30px;
    margin: auto;
    line-height: 30px; }
  .hotnews_head .hotnews_date:before{
    width: 104px;
    height: 30px;
    top: 0; }
  .hotnews_head .hotnews_date:after{
    width: 80px;
    height: 30px;
    top: 0;
    left: 11px; }
  .hotnews_body{
    display: block;
    font-size: 1.3rem;
    padding: 0 10px;
    width: auto; }
  .hotnews_text{
    width: auto;
    line-height: 188.46154%;
    margin-bottom: 38px; }
  .hotnews_text .hotnews_url:before, .hotnews_text .hotnews_pdf:before{
    width: 25px;
    background-size: 100% auto; }
  .hotnews_text .hotnews_links li{
    margin-bottom: .5em; }
  .hotnews_image img{
    max-width: 300px;
    width: 100%; }
  .hotnews_pager{
    text-align: left; }
  .hotnews_pager .page_no{
    text-align: center; }
  .hotnews_pager .page_btn{
    text-align: center; } }

@media only screen and (min-width: 768px) and (max-width: 1139px){
  .hidden-md{
    display: none; }
  .hidden-sm-md{
    display: none; }
  .show-md-block{
    display: block; } }

@media only screen and (min-width: 1140px) and (max-width: 1919px){
  .hidden-lg{
    display: none; } }

@media only screen and (min-width: 768px){
  .to-weathernews.only-pc-block{
    display: block !important; }
  .to-weathernews.only-sp-block{
    display: none !important; } }
