/*=======================================================================*/
/*
sight_media.css
観光サイト-スマートフォンレイアウト
*/
/*=======================================================================*/

/*=======================================================================*/
/* 全体 */
/*=======================================================================*/

@media screen and (max-width: 767px) {

  /* コンテンツラップ要素 */

  #sightBody {
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* リスト */

  #document ul {
   list-style: disc;
  }

  #document ul li {
    margin: 0 0 5px 0;
    padding: 0 0 5px 10px;
    line-height: 1.6em;
  }
}

  /*=======================================================================*/
  /* グローバルナビ */
  /*=======================================================================*/

@media screen and (max-width: 767px) {

  #gNav {
    display: none;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #4EB191;
    z-index: 1000;
  }

  /* ナビ固定用クラス */

  .is-fixed {
    position: relative;
    top: 0;
    left: 0;
    z-index: 500;
    width: 100%;
  }

  #gNavWrap {
      width: 100%;
      margin: 0 auto;
  }

  #gNavWrap ul {
      width: 100%;
      margin: 0;
  }

  #gNavWrap ul:before, #gNavWrap ul:after {
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden;
  }

  #gNavWrap ul:after {
      clear: both;
  }


  #gNavWrap ul li {
    display: block;
    float: left;
    width: 49.5%;
  }
  #gNavWrap ul li:nth-child(odd){
    border-width: 0px 1px 1px 0px;
  }
  #gNavWrap ul li:nth-child(even){
    border-width: 0px 0px 1px 0px;
  }
  #gNavWrap ul li:last-child {
    border-width: 0px 0px 1px 0px;
  }

  a.gNavBlc {
      display: block;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
      padding: .5rem 5px;
      width: 100%;
      text-align: center;
  }

  a.gNavBlc:before,
  a.gNavBlc:after {
      content: "";
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: transform .3s ease-out, opacity .3s ease-out;
      position: absolute;
      top: 0;
  }

  a.gNavBlc:before {
    left: 0;
    transform: translate3d(0, -100%, 0) scale(0);
  }

  a.gNavBlc:after {
    right: 0; 
    transform: translate3d(0, 100%, 0) scale(0);
  }

  a.gNavBlc:hover:before,
  a.gNavBlc:hover:after,
  a.gNavBlc:focus:before,
  a.gNavBlc:focus:after {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  a.gNavBlc:focus {
      outline: none;
  }

  a.gNavBlc:before,
  a.gNavBlc:after {
      background-color: rgba(255, 255, 255, 0.6);
  }

  .gNavBlc__label {
    position: relative;
    z-index: 2;
  }

  .menu__link {
      text-decoration: none;
      text-transform: uppercase;
      font-family: "Noto Sans JP", sans-serif;
      font-size: 1em;
      line-height: 1.8em;
      font-weight: 900;
      color: #FFF;
      text-shadow: 1px 1px 0 #455A64;
      -webkit-transition: 0.3s ease-in-out;
      -moz-transition: 0.3s ease-in-out;
      transition: 0.3s ease-in-out;
  }

  .menu__link:hover span {
      color: #4EB191 !important;
      text-shadow: 1px 1px 0 #455A64;
  }

}

  /*=======================================================================*/
  /* 【トップ】ビルボードエリア */
  /*=======================================================================*/

@media screen and (max-width: 767px) {

  #billboard {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    position: relative;
    height: auto;
    min-height: auto;
  }

  #BBWrap {
    width: 100%;
    margin: 0 auto;
    height: auto;
    min-height: 300px;
    display: block;
  }

  #BBWrap:before, #BBWrap:after {
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden;
  }

  #BBWrap:after {
      clear: both;
  }

  #BBHighLight {
    width: 100%;
    min-height: auto;
    height: auto;
    margin: 0;
    display: block;
    vertical-align: middle;
	text-align: center;
  }

  #BBHighLight h1 {
    z-index: 500;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    line-height: 1.8em;
    font-weight: 300;
    letter-spacing: 3px;
  }

  #BBHighLight h1 span {
      display: inline-block;
      padding: 5px 10px;
      margin: 0 0 10px 0;
      color: #222222;
      background-color: rgba(255,255,255,0.7);
  }

  #BillNewsArea {
    width: 100%;
    min-height: auto;
    width: 96%;
    margin: 20px auto;
    display: block;
    vertical-align: middle;
  }

  #BillNSBlc {
    display: block;
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    margin: 0 auto;
    background: rgba(0,0,0, 0.5);
    border-radius: 10px;
  }

  #BillNSBlc h2 {
      display: block;
      text-align: center;
      z-index: 500;
      font-family: "Noto Sans JP", sans-serif;
      font-size: 1.2em;
      line-height: 1.8em;
      font-weight: 700;
      color: #FFF;
      padding: 0 0 10px 0;
      border-bottom: 1px solid #FFF;
  }

  #BillNSTxtBlc dl {
      width: 100%;
      padding: 10px 0;
      border-bottom: 1px solid #FFF;
  }

  #BillNSTxtBlc dl a dt,
  #BillNSTxtBlc dl a dd {
      color: #FFF;
      text-decoration: none;
      -webkit-transition: 0.3s ease-in-out;
      -moz-transition: 0.3s ease-in-out;
      transition: 0.3s ease-in-out;
  }

  #BillNSTxtBlc dl a:hover dt,
  #BillNSTxtBlc dl a:hover dd {
      color: #4EB191;
  }

  #BillNSTxtBlc dl a dt {
      font-size: 0.9em;
      line-height: 1.6em;
  }

  #BillNSTxtBlc dl a dd h3 {
      font-size: 1em;
      line-height: 1.6em;
      font-weight: bold;
  }
  
}

  /*=======================================================================*/
  /* 【トップ】ピックアップ観光情報エリア */
  /*=======================================================================*/

@media screen and (min-width:320px) and (max-width:374px) {
  
  .TopSpotBlc {
      position: relative;
      width: 140px;
      float: left;
      margin: 0 5px 10px 5px;
  }
  
  .pictBox {
      display: inline-block;
      width: 140px;
      height: 140px;
      position: relative;
      overflow: hidden;
      border-radius: 50%;
  }
  
}

@media screen and (min-width:375px) and (max-width:414px) {

  .TopSpotBlc {
      position: relative;
      width: 165px;
      float: left;
      margin: 0 5px 10px 5px;
  }
  
  .pictBox {
      display: inline-block;
      width: 165px;
      height: 165px;
      position: relative;
      overflow: hidden;
      border-radius: 50%;
  }
  
}

@media screen and (min-width:415px) and (max-width:768px) {

  .TopSpotBlc {
      position: relative;
      width: 135px;
      float: left;
      margin: 0 2px 10px 3px;
  }
  
  .pictBox {
      display: inline-block;
      width: 135px;
      height: 135px;
      position: relative;
      overflow: hidden;
      border-radius: 50%;
  }
  
}


@media screen and (max-width: 768px) {

  #PickUPBack {
      position: relative;
      width: 100%;
      margin: 0;
      padding: 0;
      background: rgba(255, 255, 255, 0.7);
  }

  #PickUPWrap {
      position: relative;
      width: 100%;
      margin: 0 auto;
      padding: 20px 0;
  }

  #PickUPWrap h2 {
      display: block;
      text-align: center;
      font-family: "Noto Sans JP", sans-serif;
      font-size: 1.4em;
      line-height: 1.8em;
      font-weight: 700;
  }

  #PickUPWrap p.outLine {
      display: block;
      width: 96%;
      margin: 0 auto;
      text-align: center;
      font-size: 0.9em;
      line-height: 1.8em;
  }

  #PickUPBlc {
      width: 100%;
      margin: 20px auto;
  }

  #PickUPBlc:before, #PickUPBlc:after {
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden;
  }

  #PickUPBlc:after {
      clear: both;
  }

  .thumInfo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translateY(-50%) translateX(-50%);
      -webkit- transform: translateY(-50%) translateX(-50%);
      z-index: 100;
      text-align: center;
  }


  .thumInfo span {
    display: inline-block;
    margin: 0 auto 5px auto;
    padding: 5px;
    border-radius: 3px;
    color: #FFF;
    font-weight: bold;
    font-size: 0.8em;
  }

  .catnamelist { display: none; }
  .catflag span { display: none; }
  .catflag span:last-child { display: inline-block; }

  .thumInfo h3 {
    display: block;
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1em;
    line-height: 1.4em;
    font-weight: 700;
    text-shadow: 1px 1px 0 #455A64;
  }

  .pictBox img {
    position: absolute;
    left: -100%;
    right: -100%;
    margin: auto;
    width: 100%;
    height: 100%;
    max-width: 150%;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .TopSpotBlc a:hover .pictBox img {
      opacity: 0.6;
  }

  #PickUPDtlLink {
      width: 100%;
      padding: 30px 0;
      text-align: center;
  }

  a.DtlBtn {
      display: inline-block;
      background: rgba(0,32,64,0.9);
      padding: 10px 20px;
      color: #FFF;
      border: 2px solid rgba(0,32,64,0.9);
      -webkit-transition: 0.3s ease-in-out;
      -moz-transition: 0.3s ease-in-out;
      transition: 0.3s ease-in-out;
  }

  a.DtlBtn:hover {
      background: rgba(0,32,64,0);
      color: rgba(0,32,64,1);
  }

}

  /*=======================================================================*/
  /* 【トップ】イベント情報エリア */
  /*=======================================================================*/

@media screen and (max-width: 767px) {

  #TopEventArea {
      position: relative;
      width: 100%;
      margin: 0;
      padding: 0;
  }

  #TopEventAreaBack {
      position: relative;
      width: 100%;
      margin: 0;
      padding: 0;
      background: rgba(0,178,133,0.7);
  }

  #TopEventArea h2 {
      display: block;
      text-align: center;
      font-family: "Noto Sans JP", sans-serif;
      font-size: 1.4em;
      line-height: 1.8em;
      font-weight: 700;
      color: #FFF;
  }

  /* リスト */

  .TopEventWrap {
      width: 100%;
      margin: 0 auto;
      padding: 20px 0;
  }

  .TopEventWrap:before, .TopEventWrap:after {
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden;
  }

  .TopEventWrap:after {
      clear: both;
  }

  #EventList {
      width: 98%;
      margin: 5px auto 30px auto;
      float: none;
  }

  #EventList dl {
    width: 100%;
    display: table;
    margin: 0 0 5px 0;
    padding: 0 0 5px 0;
    border-bottom: 1px dotted #FFF;
  }

  #EventList dl:before, #EventList dl:after {
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden;
  }

  #EventList dl:after {
      clear: both;
  }

  #EventList dl dt {
      width: 120px;
      margin: 0 10px 0 0;
      box-sizing: border-box;
      display: table-cell;
      vertical-align: middle;
  }

  #EventList dl dt img {
      max-width: 100%;
      height: auto;
  }

  #EventList a dl dt,
  #EventList a dl dd {
      -webkit-transition: 0.3s ease-in-out;
      -moz-transition: 0.3s ease-in-out;
      transition: 0.3s ease-in-out;
  }

  #EventList a:hover dl dt {
      opacity: 0.7;
  }

  #EventList dl dd {
      margin: 0;
      padding: 10px;
      box-sizing: border-box;
      display: table-cell;
      vertical-align: top;
      color: #FFF;
      -webkit-transition: 0.3s ease-in-out;
      -moz-transition: 0.3s ease-in-out;
      transition: 0.3s ease-in-out;
  }

  #EventList a dl dd {
      color: #FFF;
  }

  #EventList a:hover dl dd {
      color: #FF4646;
      text-decoration: underline;
  }

  #EventList .date {
      display: block;
      font-size: 0.9em;
      margin: 0 0 5px 0;
  }

  #EventList h3 {
      font-size: 1.1em;
      line-height: 1.4em;
      font-weight: bold;
  }

  #EventList p.EveDesc {
      font-size: 0.9em;
      line-height: 1.6em;
  }

  #EventCal {
      width: 92%;
      margin: 5px auto;
      float: none;
  }

  #EventCal .event-calendar,
  #EventCal .calendar {
      width: 100%;
      margin: 0 auto;
  }

  #EventCal caption {
      text-align: center;
  }

  #EventCal caption a {
      display: block;
      position: relative;
      width: 100%;
      font-family: "Noto Sans", "Noto Sans Japanese", sans-serif;
      font-size: 1.2em;
      line-height: 1.8em;
      font-weight: 700;
      color: #FFF;
      margin: 10px auto;
  }

  #EventCal nav ul {
      margin: 0 0 20px 0;
  }

  #EventCal nav ul:before, #EventCal nav ul:after {
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden;
  }

  #EventCal nav ul:after {
      clear: both;
  }

  #EventCal nav ul li {
      display: inline-block;
      text-decoration: none;
      font-size: 1em;
  }

  #EventCal table.calendar tbody {
      padding: 5px 10px;
  }

  table.calendar th {
      color: #FFF;
  }

  table.calendar th,
  table.calendar td {
      text-align: center;
      padding: 10px;
      border-bottom: 1px solid #FFF;
  }

  table.calendar td {
      color: #FFF;
      font-size: 0.9em;
      line-height: 1.8em;
  }

  table.calendar td a {
      display: block;
      background: rgba(255,255,255, 0.9);
      color: #00B285;
      height: 25px;
      width: 25px;
      margin: 0 auto;
      border-radius: 50%;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      -webkit-transition: 0.3s ease-in-out;
      -moz-transition: 0.3s ease-in-out;
      transition: 0.3s ease-in-out;
      font-weight: bold;
  }

  table.calendar td a:hover {
      background: #002040;
      color: #FFF;
      border-radius: 3px;
  }


  #EventDtlLink {
      width: 100%;
      padding: 10px 0;
      text-align: center;
  }
  
}

  /*=======================================================================*/
  /* 【トップ】エコパーク動画エリア */
  /*=======================================================================*/

@media screen and (max-width: 767px) {

  #TopEcoPark {
      position: relative;
      width: 100%;
      margin: 0;
      padding: 0;
  }

  #TopEcoParkBack {
      position: relative;
      width: 100%;
      margin: 0;
      padding: 0;
      background: rgba(138,204,252,0.8);
  }

  #TopEcoPark h2 {
      display: block;
      text-align: center;
      font-family: "Noto Sans JP", sans-serif;
      font-size: 1.2em;
      line-height: 1.6em;
      font-weight: 700;
      color: #222222;
  }

  #TopEcoPark h2 span {
      display: block;
  }

  #TopEcoParkWrap {
      width: 100%;
      margin: 0 auto;
      padding: 20px 0;
  }

  #TopEcoParkWrap:before, #TopEcoParkWrap:after {
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden;
  }

  #TopEcoParkWrap:after {
      clear: both;
  }

  #TopEcoParkWrap p {
    width: 94%;
    margin: 0 auto;
    padding: 10px 0;
    font-size: 0.8em;
    line-height: 1.6em;
  }

  #MovieThumArea {
    text-align: center;
    padding: 20px 0;
    width: 96%;
    margin: 5px auto;
  }

  .movThum {
    width: 100%;
    display: block;
    margin: 0 0 10px 0;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    background: rgba(138,204,252,0);
  }
  
  .movThum img {
    max-width: 100%;
    height: auto;
  }

  .movThum:hover {
      background: rgba(138,204,252,1);
      opacity: 0.6;
  }
  
}

  /*=======================================================================*/
  /* 【トップ】スペシャルエリア */
  /*=======================================================================*/

@media screen and (max-width: 767px) {

  #TopSpecialArea {
      position: relative;
      width: 100%;
      margin: 0;
      padding: 0;
  }

  #TopSpecialBack {
      position: relative;
      width: 100%;
      margin: 0;
      padding: 0;
      background: rgba(83,125,165,0.3);
  }

  #TopSpecialWrap {
      width: 100%;
      margin: 0 auto;
      padding: 20px 0;
  }

  #TopSpecialWrap:before, #TopSpecialWrap:after,
  #SpecialBlc:before, #SpecialBlc:after {
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden;
  }

  #TopSpecialWrap:after,
  #SpecialBlc:after {
      clear: both;
  }

  #TopSpecialWrap h2 {
      display: block;
      text-align: center;
      font-family: "Noto Sans JP", sans-serif;
      font-size: 1.2em;
      line-height: 1.6em;
      font-weight: 700;
      color: #FFF;
  }

  #TopSpecialWrap h2 span {
   display: block;
  }

  #SpecialBlc {
   position: relative;
   width: 90%;
   margin: 10px auto;
  }

  figure.spBox {
    font-family: "Noto Sans JP", sans-serif;
    position: relative;
    float: none;
    margin: 10px 0;
    min-width: 100%;
    max-width: 50%;
    width: 100%;
    color: #ffffff;
    text-align: left;
    font-size: 16px;
    background-color: #000000;
  }

  figure.spBox.Sec {
    margin: 50px 0 10px 0;
  }

  figure.spBox img {
    max-width: 100%;
    backface-visibility: hidden;
    vertical-align: top;
  }

  figure.spBox:after,
  figure.spBox figcaption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  figure.spBox figcaption {
    z-index: 1;
    padding: 20px;
  }

  figure.spBox h3,
  figure.spBox .links {
    width: 100%;
    margin: 5px 0;
    padding: 0;
  }

  figure.spBox h3 {
    line-height: 1.1em;
    font-weight: 700;
    font-size: 1.4em;
    text-transform: uppercase;
    opacity: 0;
  }

  figure.spBox p {
    font-size: 0.8em;
    line-height: 1.6em;
    padding: 20px 0 0 0;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    top: 50%;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  figure.spBox .inner {
    padding: 10px;
    width: 90%;
    text-align: center;
  }

  figure.spBox:hover .inner {
    opacity: 0;
  }

  figure.spBox .inner h3 {
    line-height: 1.1em;
    font-weight: 700;
    font-size: 1.2em;
    text-transform: uppercase;
    opacity: 1;
    color: #FFF;
  }

  figure.spBox .inner span {
    line-height: 0.9em;
    color: #FFF;
  }

  .spDescBox {
    width: 90%;
  }
  
}

  /*=======================================================================*/
  /* 【トップ】スポット選択エリア */
  /*=======================================================================*/

@media screen and (max-width: 767px) {

  #TopSpotArea {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #F0F9F3;
  }

  #TopSpotWrap {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
  }

  #TopSpotWrap h2 {
    display: block;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    line-height: 1.8em;
    font-weight: 700;
    color: #002040;
  }

  #TopSpotWrap p {
    text-align: center;
    margin: 0 auto;
    padding: 20px 0;
    line-height: 1.4em;
    font-size: 0.8em;
  }

  #SpotBlockWrap {
    width: 100%;
    margin: 20px auto;
  }

  #SpotBlockWrap:before, #SpotBlockWrap:after,
  #SpotBtnArea:before, #SpotBtnArea:after{
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden;
  }

  #SpotBlockWrap:after,
  #SpotBtnArea:after {
      clear: both;
  }

  #SpotBtnArea {
   width: 100%;
   margin: 0 auto 20px auto;
  }

  #SpotBtnArea ul {
	width: 98%;
    margin: 0 auto;
  }

  #SpotBtnArea ul li {
    display: inline-block;
    width: 47.2%;
    font-size: 0.8em;
    box-sizing: border-box;
    padding: 10px;
    margin: 0 2px 10px 2px;
    box-sizing: border-box;
    background: #777777;
    color: #FFF;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-align: center;
    border-radius: 3px;
  }

  #SpotBtnArea ul li a {
    color: #FFF;
  }

  #SpotBtnArea ul li:hover,
  #SpotBtnArea ul li.active {
    font-weight: bold;
    background: #002040;
  }
  
}

  /*=======================================================================*/
  /* 【トップ】関連団体リンクエリア */
  /*=======================================================================*/

@media screen and (max-width: 767px) {

  #TopLinkArea {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #EAE6DD;
  }

  #TopLinkWrap {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
  }

  #TopLinkWrap h2 {
    display: block;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    line-height: 1.8em;
    font-weight: 700;
    color: #002040;
  }

  #TopLinkWrap p {
    text-align: center;
    margin: 0 auto;
    padding: 10px 0;
    line-height: 1.6em;
    font-weight: bold;
  }

  #LinkBlcArea ul {
    width: 98%;
    margin: 0 auto;
  }

  #LinkBlcArea ul li {
    width: 100%;
    display: inline-block;
  }

  #LinkBlcArea ul li a {
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
    padding: 10px;
    box-sizing: border-box;
    background: #FFF;
    border-radius: 10px;
    border: 1px solid #DDDDDC;
    color: #222222;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  #LinkBlcArea ul li a:hover {
    background: #887853;
    color: #FFF;
  }
  
}

  /*=======================================================================*/
  /* 【カテゴリー】ビルボード */
  /*=======================================================================*/

@media screen and (max-width: 767px) {

  #catBillboard {
    position: relative;
    width: 100%;
    margin: 0;
    height: 150px;
    z-index: 1;
    background: #000;
  }

  #catBillboard h1 {
    position: absolute;
    bottom: -2.5em;
    left: 0;
    right: 0;
    margin:0 auto;
    z-index: 100;
    display: block;
    text-align: center;
  }

  #catBillboard h1 span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6em;
    line-height: 2.2em;
    font-weight: 900;
    padding: 10px;
    box-sizing: border-box;
    background: #4EB191;
    color: #FFF;
    text-shadow: 1px 1px 0 #455A64;
  }

  .scale-bg {
    background-size: 100%;
    width: 100%;
    padding-bottom: 150px;
  }

  .bb_yama {  background: url(../../img/sight/back_cat_yama.jpg) no-repeat center center;	background-size: cover;	}
  .bb_tokusan {  background: url(../../img/sight/back_cat_fruits.jpg) no-repeat center center;	background-size: cover;	}
  .bb_activity {  background: url(../../img/sight/back_cat_activity.jpg) no-repeat center center;	background-size: cover;	}
  .bb_shizen {  background: url(../../img/sight/back_cat_shizen.jpg) no-repeat center center;	background-size: cover;	}
  .bb_rekishi {  background: url(../../img/sight/back_cat_rekishi.jpg) no-repeat center center;	background-size: cover;	}
  .bb_photostudio {  background: url(../../img/sight/back_cat_yama.jpg) no-repeat center center;	background-size: cover;	}
  .bb_map {  background: url(../../img/sight/back_cat_map.jpg) no-repeat center center;	background-size: cover;	}

}

  /*=======================================================================*/
  /* 【カテゴリー・詳細】SNSボタンエリア */
  /*=======================================================================*/

@media screen and (max-width: 767px) {
  #snsBtnArea {
    
  }
  
  #snsBtnArea:before, #snsBtnArea:after {
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden;
  }

  #snsBtnArea:after {
      clear: both;
  }
  
}

  
  /*=======================================================================*/
  /* 【カテゴリー・詳細】パンくずリスト */
  /*=======================================================================*/

@media screen and (max-width: 767px) {

  #page.cat {
    position: relative;
    padding-top: 2em;
  }

  #BCArea {
      width: 96%;
      margin: 30px auto 10px auto;
  }

  #BCArea dl {
      width: 100%;
  }

  #BCArea dl:before, #BCArea dl:after {
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden;
  }

  #BCArea dl:after {
      clear: both;
  }

  #BCArea dl dt {
    display: block;
    float: none;
    width: 100%;
    margin: 0 0 10px 0;
  }

  #BCArea dl dd {
    display: block;
    width: 96%;
    float: none;
    padding: 5px 10px;
    margin: 0 auto;
  }

  .CrumbsTTL {
      display: block;
      width: 100%;
      color: #FFF;
      text-align: center;
      background: #333333;
      border-radius: 50px;
      padding: 5px 10px;
      box-sizing: border-box;
  }

  .crumbs {
    display: block;
    margin: 0 0 10px 0;
    font-size: 0.9em;
    line-height: 1.6em;
  }

  .crumbs a {
      color: #333333;
  }

  .crumbs a:hover {
      color: #0F97C4;
  }

  .crumbs a.goIndex {
      color: #0F97C4;
      font-weight: bold;
  }

  .crumbs a.goIndex:before {
      color: #0F97C4;
      font-family: 'icomoon' !important;
      content: "\e917";
      margin: 0 3px 0 0;
  }

  .crumbs a.goIndex:hover {
      color: #333333;
  }

  .separator {
      margin: 0 4px; 
  }

}

  /*=======================================================================*/
  /* 【詳細】タイトルエリア */
  /*=======================================================================*/

@media screen and (max-width: 767px) {

  .pageTTL {
      width: 100%;
      margin: 0 auto 20px auto;
      background: #EEEEEE;
  }

  .pageTTL h1 {
      width: 100%;
      margin: 0 auto;
      background: none;
      padding: 10px 15px;
      box-sizing: border-box;
      font-family: "Noto Sans JP", sans-serif;
      font-size: 1.5em;
      line-height: 1.7em;
      font-weight: 800;
      color: #333333;
  }
  
}

  /*=======================================================================*/
  /* 【カテゴリー・詳細】SNSボタンエリア */
  /*=======================================================================*/

@media screen and (max-width: 767px) {

  #snsBtnArea {
      width: 98%;
      margin: 0 auto;
  }

  .cms-sns_share {
      float: none;
  }

  .cms-sns_share .site {
      float: left;
      margin-right: 15px;
  }

  .cms-sns_share .fb {
      margin-top: 0;
  }

  .cms-sns_share .fb-like,
  .cms-sns_share .fb-share,
  .cms-sns_share .twitter,
  .cms-sns_share .hatena,
  .cms-sns_share .googlev
  .cms-sns_share .evernote,
  .cms-sns_share .line {
      display: inline-block;
      vertical-align: top;
  }
  
}

  /*=======================================================================*/
  /* 【カテゴリー】観光マップ（地図） */
  /*=======================================================================*/

@media screen and (max-width: 767px) {

  /* 検索画面 */
  /*=======================================================================*/
  #sightMap {
    width: 98%;
    margin: 10px auto;
  }

  #sightMap:before, #sightMap:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
  }

  #sightMap:after {
    clear: both;
  }

  .SMapFormArea {
   width: 100%;
   margin: 0 auto 10px auto;
   padding: 5px 5px 20px 5px;
  }
  
  .SMapFormArea .service div,
  .SMapFormArea .location div {
    display: inline-block;
    width: 48%;
  }
  
  /* ボタン */
  
  body.body--kankou-map footer.send input[type="submit"] {
    width: 90%;
    margin: 0 auto 10px auto;
  }
  
  
}

  /* 検索結果 */
  /*=======================================================================*/

@media screen and (max-width: 767px) {
  
  .body--kankou-map .condition {

  }

  .body--kankou-map dl.condition {
    width: 96%;
    margin: 0 auto 20px auto;
    box-sizing: border-box;
  }

  .body--kankou-map dl.condition:before, .body--kankou-map dl.condition:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
  }

  .body--kankou-map dl.condition:after {
    clear: both;
  }

  .body--kankou-map dl.condition dt,
  .body--kankou-map dl.condition dd {
    padding: 10px;
    margin: 0 0 5px 0;
    display: block;
    box-sizing: border-box;
    float: none;
  }

  .body--kankou-map dl.condition dt {
    width: 100%;
    background: #4EB191;
    border-radius: 5px;
    color: #FFF;
    clear:left;
  }

  .body--kankou-map dl.condition dd {
    width: 100%;
    margin: 0;
  }

  .settings {
    width: 80%;
    margin: 10px auto;
    text-align: center;
  }

  .ajax-box {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: #0F97C4;
    border: solid 2px #0F97C4;
    border-radius: 3px;
    transition: .4s;
  }

  .ajax-box:hover {
    background: #0F97C4;
    color: white;
  }

  .result {
    margin: 0 0 10px 0;
  }

  .result h2 {
    font-family: "Noto Sans", "Noto Sans Japanese", sans-serif;
    font-size: 1.2em;
    line-height: 1.8em;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding: 0 0 0 5px;
    border-left: 5px solid rgba(237,169,139,1); 
  }

  .tabs ul {
    text-align: right;
    margin: 0 0 20px 0;
    border-bottom: 2px solid #4EB191;
  }

  .tabs ul:before, .tabs ul:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
  }

  .tabs ul:after {
   clear: both; 
  }

  .tabs ul li {
    width: 50%;
    display: inline-block;
    float: right !important;
    width: auto !important;
    margin: 0 0 -6px 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    border: none !important;
    border-radius: 5px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 1;
    background: none !important;
  }

  .tabs ul li a {
    padding: 5px 30px;
    box-sizing: border-box;
    margin: 0 5px 0 0 !important;
    background: none;
    border-top: 2px solid #4EB191;
    border-left: 2px solid #4EB191;
    border-right: 2px solid #4EB191;
    color: #4EB191;
    text-align: center;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .tabs ul li a:hover,
  .tabs ul li.current a {
    background: #4EB191;
    color: #FFF;
  }

  .tabs ul li a:last-child {
    margin: 0 !important;
  }

  #sResultMapArea:before, #sResultMapArea:after {
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden;
  }

  #sResultMapArea:after {
   clear: both; 
  }

  .body--kankou-map #map-sidebar {
    width: 96%;
    height: 250px;
    display: block;
    margin: 10px auto;
    overflow-y: auto;
    border: 1px solid #CCC;
    border-radius: 5px;
  }

  .body--kankou-map #map-canvas {
    width: 98% !important;
    margin: 0 auto;
    display: block;
    float: none;
  }

  nav.filters {
   width: 100%;
   margin: 20px 0;
  }

  nav.filters:before, nav.filters:after {
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden;
  }

  nav.filters:after {
   clear: both; 
  }

  #map-sidebar .column {
    border-bottom: 1px solid #CCC;
    padding: 5px 3px;
    box-sizing: border-box;
  }

  #map-sidebar .column a {
    color: #4EB191;
    font-weight: bold;
  }

  #map-sidebar .column a:hover {
    color: #0F97C4;
  }

  #map-sidebar a.click-marker {
    display: block;
    text-align: right;
    font-weight: normal;
  }

  #cboxLoadedContent .category div,
  #cboxLoadedContent .location div {
    display: inline-block;
    width: 100%;
    margin: 0 0 10px 0;
  }

  #cboxLoadedContent .service div {
    display: inline-block;
    width: 90%;
    margin: 0 0 10px 0;
  }

  #cboxLoadedContent input#keyword {
    width: 80%;
    margin: 5px auto;
    padding: 7px;
    border: 2px solid #CCC;
    border-radius: 3px;
  }
  
  .body--kankou-map article.column {
   width: 98%;
   margin: 0 auto 5px auto;
   padding: 10px;
   box-sizing: border-box;
   border-radius: 3px;
   border: 1px solid #CCC;
  }

}

  /*=======================================================================*/
  /* 【カテゴリー・詳細】本文エリア */
  /*=======================================================================*/

@media screen and (max-width: 767px) {

  #document {
    width: 98%;
    margin: 20px auto 10px auto;
    padding: 10px 0;
    box-sizing: border-box;
  }
  #document img {
    max-width: 100%;
    height: auto!important;
    clear: both;
    float: none!important;
    display: block;
    margin: 0 auto;
  }

  #document:before, #document:after {
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden;
  }

  #document:after {
      clear: both;
  }

  #sightDtlArea {
    width: 100%;
    display: block;
    margin: 10px 0;
  }

  #sightDtlArea:before, #sightDtlArea:after {
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden;
  }

  #sightDtlArea:after {
      clear: both;
  }

  #sightDtlArea .TxtBlc {
    display: block;
    float: none;
    vertical-align: top;
    padding: 0;
    box-sizing: border-box;
    width: 98%;
    margin: 0 auto 10px auto;
  }

  #sightDtlArea .TxtBlc.Bunka {
    width: 98%;
  }

  #sightDtlArea .PictBlc {
    display: block;
    float: none;
    vertical-align: top;
    width: 98%;
    margin: 0 auto 10px auto;
    padding: 0;
    box-sizing: border-box;
  }
  
  #sightDtlArea .PictBlc img {
    max-width: 100%;
    height: auto;
  }

  #sightDtlArea .PictBlc.Bunka {
   width: 98%;
  }

  #document article h2,
  #sightDtlArea .TxtBlc h2,
  #document.catdoc h2 {
    width: 100%;
    font-family: "Noto Sans", "Noto Sans Japanese", sans-serif;
    font-size: 1.4em;
    line-height: 1.6em;
    font-weight: 600;
    position: relative;
    padding: 0 0 3px 10px;
    color: #43987C;
    box-sizing: border-box;
    z-index: 100;
    margin: 0 0 10px 0;
    border-left: 5px solid #43987C;
  }

  /* マップページのみ適用 */
  
  .body--kankou-map #document.catdoc h2 {
    font-size: 1.2em;
    line-height: 1.3em;
  }

  #sightDtlArea .TxtBlc h3,
  #document.catdoc h3,
  #document article h3 {
    width: 100%;
    font-family: "Noto Sans", "Noto Sans Japanese", sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    position: relative;
    padding: 5px 0 10px 0;
    color: #222222;
    box-sizing: border-box;
    z-index: 100;
    margin: 0 0 20px 0;
  }

  #sightDtlArea .TxtBlc h3:after,
  #document.catdoc h3:after,
  #document article h3:after {
    content: "";
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: -webkit-repeating-linear-gradient(-45deg, #E8DF9F, #E8DF9F 4px, #fff 4px, #fff 8px);
    background: repeating-linear-gradient(-45deg, #E8DF9F, #E8DF9F 4px, #fff 4px, #fff 8px);
    box-sizing: border-box;
  }

  #sightDtlArea .TxtBlc h4,
  #document.catdoc h4,
  #document article h4 {
    position: relative;
    display: inline-block;
    padding: 0 37px;
    margin: 0 0 20px 0;
    font-family: "Noto Sans", "Noto Sans Japanese", sans-serif;
    font-size: 1.2em;
    font-weight: 400;
  }

  #sightDtlArea .TxtBlc h4:before,
  #sightDtlArea .TxtBlc h4:after,
  #document.catdoc h4:before,
  #document.catdoc h4:after,
  #document article h4:before,
  #document article h4:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 36px;
    height: 2px;
    background-color: #4EB191;
    -moz-transform: rotate(-60deg);
    -webkit-transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    transform: rotate(-60deg);
  }

  #sightDtlArea .TxtBlc h4:before, #document.catdoc h4:before, #document article h4:before {left:0;}
  #sightDtlArea .TxtBlc h4:after, #document.catdoc h4:after, #document article h4:after {right: 0;}

  #sightDtlArea .TxtBlc p,
  #document.catdoc p,
  #document article p {
    font-size: 1em;
    line-height: 1.6em;
    margin: 0 0 10px 0;
  }

  .TxtBlc ul,
  #document ul {
   width: 98%;
   margin: 0 auto;
   padding: 5px 0; 
  }

  .spotBlc .SPtxtBox p,
  .spotBlc .SPStxtBox p {
    font-size: 0.9em !important;
    line-height: 1.4em !important;
  }

  /* テーブル */

  #document article table {
    width: 90%;
    margin: 10px auto;
    border-collapse: collapse;
  }

  #document article table th,
  #document article table td {
    padding: 10px;
    border: 1px solid #E0E0E0;
  }

  #document article table th {
    text-align: center;
    font-weight: bold;
    background: #F2EECC;
  }


  #sightDtlArea .PictBlc img,
  #sightDtlArea .PictBlc_Clu img {
    max-width: 100%;
    height: auto;
  }

  .categories,
  .map-page,
  .related-pages {
    margin: 0 0 10px 0;
  }

  .categories h2,
  .map-page h2,
  .related-pages h2 {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-left: 10px solid #EDE7B6;
    color: #333333;
    padding: 0 0 0 10px;
    margin: 1em 0 1em 0;
    box-sizing: border-box;
    font-size: 1em;
    font-family: "Noto Sans", "Noto Sans Japanese", sans-serif;
    line-height: 1.6em;
    font-weight: 600;
  }

  .categories ul li {
    display: inline-block;
    padding: 5px !important;
    margin: 0 2px 3px 0 !important;
    border: 1px solid #EDE7B6;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .categories ul li:hover {
    background: #EDE7B6;
  }

  /* カテゴリーリスト */

  #document.catdoc .article-pages {
    width: 100%;
    margin: 20px 0;
  }
  
  /* googlemapレスポンシブ対応 */
  
  .map-canvas {
      position: relative;
      width: 100%;    /* 左右に余白が必要なら値を変更してもOK */
      height: 250px !important;
      padding-bottom: 56.25%;    /* padding-topでもOK */
      overflow: hidden;
  }
  .map-canvas iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;    /* 必要であれば!importantを付けてください */
      height: 100%;    /* 必要であれば!importantを付けてください */
  }
  

  /* カテゴリー:トピックスリスト */

  #document.catdoc ul {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    box-sizing: border-box;
  }

  #document.catdoc ul li h3 {
    width: 100%;
    font-family: "Noto Sans", "Noto Sans Japanese", sans-serif;
    font-size: 1.2em;
    font-weight: 400;
    position: relative;
    padding: 5px 0 5px 5px;
    margin: 0 0 5px 0 !important;
  }

  #document.catdoc ul li h3 .icon {
    color: #43987C;
    margin: 0 10px 0 0;
  }

  #document.catdoc ul li h3 a {
    padding: 5px;
    color: #333333;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  #document.catdoc ul li h3 a:hover {
    color: #43987C;
  }

  #document.catdoc ul li h3:after {
    display: none;
  }

  /* カテゴリー:スポットサムネイルリスト */

  #picList {
   width: 100%; 
  }

  #picList:before, #picList:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
  }

  #picList:after {
   clear: both; 
  }

  /* カテゴリーリストブロック【横3列】 */

  .spotBlc {
    display: block;
    float: left;
    width: 47%;
    /*min-height: auto;*/
    margin: 0 2px 10px 5px;
  }
  
  /* フルーツカテゴリのみmin-height値をとる */

  body#body--kankou-tokusan-index .spotBlc {	min-height: auto !important;	}
  
  #body--kankou-activity-index .spotBlc,
  #body--kankou-shizen-index .spotBlc {
    float: none;
    width: 98%;
    margin: 0 auto 10px auto;
    border: 1px solid #CCC;
    border-radius: 5px;
    padding: 0 5px 10px 5px;
    box-sizing: border-box;
  }
  
  #body--kankou-activity-index .spotBlc:before, #body--kankou-activity-index .spotBlc:after,
  #body--kankou-shizen-index .spotBlc:before, #body--kankou-shizen-index .spotBlc:after {
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden;
  }
  
  #body--kankou-activity-index .spotBlc:after,
  #body--kankou-shizen-index .spotBlc:after {
    clear: both;
  }
  
  #body--kankou-activity-index .spotBlc h3,
  #body--kankou-shizen-index .spotBlc h3 {
    float: right;
    width: auto !important;
    padding: 0 10px 0 0;
    font-size: 0.9em !important;
  }

  .SPthumBox {
    display: block;
    margin: 0 0 5px 0;
  }

  .SPthumBox span {
   display: block;
   float: left;
   width: 120px;
   height: 80px;
   text-indent: -9999px;
   background-size: cover;
  }

  /* 紅葉 */
  .SPthumBox .kou-kousai {	background: url(../../img/sight/shizen/kouyou_kousai.jpg) 0 0 no-repeat;	background-size: cover;	}
  .SPthumBox .kou-ashiyasu {	background: url(../../img/sight/shizen/kouyou_ashiyasu.jpg) 0 0 no-repeat;	background-size: cover;	}
  .SPthumBox .kou-kushigata {	background: url(../../img/sight/shizen/kouyou_kushigata.jpg) 0 0 no-repeat;	background-size: cover;	}

  /* 桜 */
  .SPthumBox .sakura-kousai {	background: url(../../img/sight/shizen/sakura_kousai.jpg) 0 0 no-repeat;	background-size: cover;	}
  .SPthumBox .sakura-ashiyasu {	background: url(../../img/sight/shizen/sakura_ashiyasu.jpg) 0 0 no-repeat;	background-size: cover;	}
  .SPthumBox .sakura-kushigata {	background: url(../../img/sight/shizen/sakura_kushigata.jpg) 0 0 no-repeat;	background-size: cover;	}
  .SPthumBox .sakura-hatta {	background: url(../../img/sight/shizen/sakura_hatta.jpg) 0 0 no-repeat;	background-size: cover;	}
  .SPthumBox .sakura-shirane {	background: url(../../img/sight/shizen/sakura_shirane.jpg) 0 0 no-repeat;	background-size: cover;	}
  .SPthumBox .sakura-wakakusa {	background: url(../../img/sight/shizen/sakura_wakakusa.jpg) 0 0 no-repeat;	background-size: cover;	}

  /* アクティビティ */
  .SPthumBox span.inn {	background: url(../../img/sight/activity/back_cat_act_inn.jpg) 0 0 no-repeat;	}
  .SPthumBox span.kouen {	background: url(../../img/sight/activity/back_cat_act_kouen.jpg) 0 0 no-repeat;	}
  .SPthumBox span.museum {	background: url(../../img/sight/activity/back_cat_act_bijyutukan.jpg) 0 0 no-repeat;	}
  .SPthumBox span.noboru {	background: url(../../img/sight/activity/back_cat_act_noboru.jpg) 0 0 no-repeat;	}
  .SPthumBox span.onsen {	background: url(../../img/sight/activity/back_cat_act_onsen.jpg) 0 0 no-repeat;	}
  .SPthumBox span.restaurant {	background: url(../../img/sight/activity/back_cat_act_restaurant.jpg) 0 0 no-repeat;	}
  .SPthumBox span.shop {	background: url(../../img/sight/activity/back_cat_act_shop.jpg) 0 0 no-repeat;	}
  .SPthumBox span.taiken {	background: url(../../img/sight/activity/back_cat_act_taiken.jpg) 0 0 no-repeat;	}


  .SPthumBox img {
    width: 100%;
    max-width: 100%;
    height: auto;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .SPtxtBox h3,
  .SPStxtBox h3 {
    display: block;
    font-size: 1em !important;
    line-height: 1.4em;
    margin: 0 !important;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .SPtxtBox h3:after,
  .SPStxtBox h3:after {
    display: none;
  }
  
}

  /* カテゴリーリスト【山を楽しむ】 */
  /* ============================================================= */

@media screen and (max-width: 767px) {

  #yama-top ul {
    list-style: none;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 10px 0;
    box-sizing: border-box;
  }

}

  /* カテゴリーリストブロック【歴史・山小屋】 */
  /* ============================================================= */

@media screen and (max-width: 768px) {

  #picList.Bunka .spotBlc,
  #picList.ActYama .spotBlc {
    width: 98%;
    margin: 0 auto 10px auto;
    padding: 10px;
    box-sizing: border-box;
    border: 3px solid #ECEFF1;
    display: table;
    position: relative;
  }

  #picList.Bunka .spotBlc .SPthumBox {
    display: table-cell;
    float: none;
    width: 90px;
    margin: 0;
    vertical-align: top;
  }


  #picList.Bunka .spotBlc .SPtxtBox {
    display: table-cell;
    float: none;
    padding: 0 0 0 10px;
    vertical-align: top;
  }

  #picList.ActYama .spotBlc .SPSthumBox {
    display: table-cell;
    float: none;
    width: 90px;
    margin: 0;
    vertical-align: top;
  }


  #picList.ActYama .spotBlc .SPStxtBox {
    display: table-cell;
    float: none;
    padding: 0 0 0 10px;
    vertical-align: top;
  }



  .HisTop {
   width: 100%;
   margin: 0 0 20px 0;
  }

  .HisTop:before, .HisTop:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
  }

  .HisTop:after {
   clear: both; 
  }

  /* 歴史～トップページ */

  #document.catdoc h2 a {
    color: #43987C;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  #document.catdoc h2 a:hover {
    color: #0F97C4;
  }

  #document.catdoc h2:hover {
    border-left: 5px solid #0F97C4;
  }

  .CatListLink {
    width: 90%;
    margin: 20px auto;
  }

  .CatListLink a {
    padding: 20px !important;
  }

  /* リンクホバーアニメーション */

  a.HisList {
    width: 100%;
    box-sizing: border-box;
    color:#546E7A;
    background:transparent;
    border-width:2px;
    border-style: solid;
    border-color: #546E7A;
    position:relative;
    margin: 0.5em 0.2em;
    display:inline-block;
    padding:0.5em;
    transition:all 0.3s ease-in-out;
    text-align:center;
    font-family:comfortaa;
    font-weight:bold
  }

  a.HisList:before, a.HisList:after {
      content:'';
      display:block;
      position:absolute;
      border-color:#546E7A;
      box-sizing:border-box;
      border-style:solid;
      width:1em;
      height:1em;
      transition:all 0.3s ease-in-out
  }

  a.HisList:before {
      top:-6px;
      left:-6px;
      border-width:2px 0 0 2px;
      z-index:5;
  }

  a.HisList:after {
      bottom:-6px;
      right:-6px;
      border-width:0 2px 2px 0;
  }

  a.HisList h3 {
    padding: 10px 0 15px 0 !important;
  }

  a.HisList:hover:before, a.HisList:hover:after {
      width:calc(100% + 12px);
      height:calc(100% + 12px);
      border-color:#4EB191;
  }

  a.HisList:hover {
      color:#FFF;
      background-color:#4EB191;
      border-color:#4EB191;
  }

  a.HisList:hover h3 {
      color:#FFF !important;
  }

  .Hov button {
      color:#eb1777;
      border-color:#eb1777;
  }

  .Hov button:before, .pink button:after  {
      border-color:#eb1777;
  }

  .Hov button:hover:before, .pink button:hover:after {
      border-color:#eb1777;
  }

  .Hov button:hover {
      color:#fff;
      background-color:#eb1777;
      border-color:#eb1777;
  }
  
}

  /* カテゴリーリストブロック【アクティビティ・泊まる】 */
  /* ============================================================= */

@media screen and (max-width: 767px) {

  .innBlc {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ECEFF1;
    border-radius: 3px;
    margin: 0 0 10px 0;
  }

  /* お問合せブロック */

  footer.contact {
    width: 98%;
    margin: 2em auto 1em auto;
    background-image: none!important;
    position: static;
    float: none;
    border: 2px solid #bcbcbc;
    margin-bottom: 40px;
  }

  footer.contact {
    width: 98%;
    margin: 2em auto 1em auto;
    background-image: none!important;
    position: static;
    float: none;
    border: 2px solid #bcbcbc;
    margin-bottom: 40px;
  }

  footer.contact:before, footer.contact:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
  }

  footer.contact:after {
    clear: both;
  }

  footer.contact h2 {
    font-size: 1.2em;
    background-color: #eeeeee;
    padding: 10px;
    font-weight: bold;
  }

  .contact p.group {
    padding: 5px 0px 5px 10px;
    margin: 0 0 10px 0;
  }

  .contact p.charge {
     padding: 10px 0px 10px 10px;
  }

  .contact dl,
  .contact dt,
  .contact dd {
    float: left;
    margin: 0px 0px 5px 10px;
  }

  .contact dd {
      margin-right: 10px;
  }
  
}

  /* ミニアンケート */
  /*=======================================================================*/

@media screen and (max-width: 767px) {

  #feedback {
    width: 98%;
    margin: 2em auto 3em auto;
    color: #666666;
    box-sizing: border-box;
    clear: both;
  }

  #feedback h2 {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: #EEECDE;
    font-size: 1em;
    font-family: "Noto Sans", "Noto Sans Japanese", sans-serif;
    line-height: 1.6em;
    font-weight: 600;
    padding: 10px 20px;
    box-sizing: border-box;
    margin: 0 0 1em 0;
  }

  #feedback p {
    margin-bottom: 0.9em;
  }

  #feedback .inquiry-form dl,
  #feedback .inquiry-form fieldset{
    margin-bottom: 1em;
    padding: 0;
    border: none;
  }

  #feedback .inquiry-form dl dt,
  #feedback .inquiry-form legend{
    font-weight: bold;
  }

  #feedback footer {
    background-image : none!important;
    position: static;
    float: none;
  }

  .columns {
    width: 100%;
    margin: 0.5em 0;
  }

  .columns:before, .columns:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
  }

  .columns:after {
    clear: both;
  }

  footer.send {
      border: none !important;
  }

  .inquiry-form  fieldset,
  .columns  fieldset,
  .form-login  fieldset {
    border: none !important;
  }

  .inquiry-form .send input,
  .columns .send input,
  .form-login .send input {
    display: block;
    width: 90%;
    margin: 0 auto;
    color : #333333;
    padding: 10px 0px;
    text-align :center;
    border-bottom: 4px solid #929292;
    border-top: none;
    border-left: none;
    border-right: none;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #d5d5d5;
    font-size: 1.0em;
    cursor: pointer;
  }

  .inquiry-form .send input:active,
  .columns .send input:active,
  .form-login .send input:active {
      border-bottom: none;
  }

  .inquiry-form dl,
  .columns dl,
  .form-login dl,
  .inquiry-form fieldset{
    border-width : 1px 0px 0px 0px;
    border-color : #cccccc;
    border-style: solid;
    clear: both;
    padding-top: 10px;
    line-height: 1.6em;
  }

  .inquiry-form dl dd, .columns dl dd,
  .form-login dl dd,
  .inquiry-form .fields{
      float: none;
      width: 100%;
      padding: 0 10px;
  }

  .inquiry-form dl dt,
  .columns dl dt,
  .form-login dl dt,
  .inquiry-form legend{
    clear: both;
    float: none;
    width: 100%;
    padding: 6px 15px;
    box-sizing: border-box;
    font-weight: bold;
    background: #f0ebe1;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .inquiry-form dl select,
  .columns dl select,
  .form-login dl select,
  .inquiry-form .fields select{
      width: 98%;
      padding: 10px 5px;
  }
  
  .inquiry-form dl label,
  .inquiry-form fieldset label{
   display: block;
   width: 100%;
   margin: 0 0 5px 0;
  }

  .inquiry-form dl dt .required,
  .columns dl dt .required,
  .form-login dl dt .required,
  .inquiry-form legend .required{
      color: #bb0000;
      font-weight: normal;
      font-size: 0.8em;
      display: block;
  }
  
}