@charset "UTF-8";
/* CSS Document */

@font-face{
  font-family: 'YakuHanJP_Noto', 'Noto Sans JP', 'Noto Serif JP', sans-serif;
  font-style:normal;
}

html{
  font-size: 62.5%; /* 62.5％ X 16px=10px */
  overflow: auto;
}

body{
  color: #4d5156;
  font-family: 'YakuHanJP_Noto', 'Noto Sans JP', 'Noto Serif JP', sans-serif, serif;
  font-size: 1.6rem;
  font-feature-settings: "palt" 1;
  overflow: hidden;
}

a{
  color: #4d5156;
}

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

.inner{
  max-width: 1040px;
  margin: 0 auto;
}

.text-center{
  text-align: center;
}  

.sp_img{
  display: none;
}
 
.navToggle{
  display: none;
}

.pc_br{
  display: none;
}

.navToggle{
  display: none;
}



/*------------------ふわっと表示------------------*/
.fadein{
  opacity : 0;
  transform: translateY(200px);
  transition: all 1s;
}
/*------------------ぶるぶる------------------*/
.shake{
  animation: hurueru .8s  infinite;
}
@keyframes hurueru {
  0% {transform: translate(0px, 0px) rotateZ(0deg)}
  25% {transform: translate(2px, 2px) rotateZ(1deg)}
  50% {transform: translate(0px, 2px) rotateZ(0deg)}
  75% {transform: translate(2px, 0px) rotateZ(-1deg)}
  100% {transform: translate(0px, 0px) rotateZ(0deg)}
}
.shake02{
  animation: hurueru02 .8s  infinite;
}
@keyframes hurueru02 {
  0% {transform: translate(0px, 0px) rotateZ(0deg)}
  25% {transform: translate(2px, 2px) rotateZ(1deg)}
  50% {transform: translate(2px, 0px) rotateZ(0deg)}
  75% {transform: translate(0px, 2px) rotateZ(1deg)}
  100% {transform: translate(0px, 0px) rotateZ(0deg)}
}
/*------------------縦のふわふわ指定------------------*/
.fuwafuwa01{
  animation: fuwafuwa01 2s infinite ease-in-out;
}
@keyframes fuwafuwa01 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}
.fuwafuwa03{
  animation: fuwafuwa01 1.8s infinite ease-in-out;
}
@keyframes fuwafuwa03 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.fuwafuwa04{
  animation: fuwafuwa01 2.2s infinite ease-in-out;
}
@keyframes fuwafuwa04 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/*------------------横のふわふわ指定------------------*/
.fuwafuwa02{
  animation: fuwafuwa02 2.5s infinite ease-in-out;
}
@keyframes fuwafuwa02 {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
}



/*------------------ヘッダー------------------*/
.logo{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  align-items: center; /*--センター揃え--*/
  margin: 28px 40px 25px;
}



/*------------------ヘッダー固定------------------*/
.header_area{
  position: fixed;
  top: 0;
  padding: 0;
  width: 100%;
  z-index: 1000;
  background: rgb(255, 255, 255, 0.9);
}



/*------------------パンくずリスト部分------------------*/
.bread_area{
  background: #f9f2f4;
  padding: 15px 0 15px 40px; 
}

.breadcrumb {
  list-style: none;
}

.breadcrumb li {
  display: inline; /*横に並ぶように*/
  list-style: none;
  font-size: 1.6rem;
}

.breadcrumb li:after { /* >を表示*/
  content: '>';
  padding: 0 10px;
  color: #555;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #e60069; /*色*/
}

.breadcrumb li a:hover {
  border-bottom: dashed 1px #e60069;
}



/*------------------共通テキスト------------------*/
.name{
  padding-bottom: 10px;
}

.text{
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/
  margin-bottom: 22px;
}

dl{
  display: flex;
}

.info>li>dl>dt,.info>li>dl>dd{
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 400;
}

.info>li{
  padding-bottom: 5px;
}
.information>dl:last-child{
  padding-bottom: 0;
}

.info_link>a{
  box-shadow: inset 0 0 0 0 #c71585;
  color: #c71585;
	padding: 0 0.25rem;
	margin: 0 -0.25rem;
  transition: color .3s ease-in-out, box-shadow .3s ease-in-out;  
}
.info_link>a:hover{
  color: #fff;
  box-shadow: inset 300px 0 0 0 #c71585;  
}

.info_ann{
  font-size: 1.2rem;  
}

.size{  /*--アイコン--*/
  font-size: 1.5rem;
  margin-left: 5px;
}
/*------------------マップ部分------------------*/
.vertical_map{
  padding-bottom: 18px;   
}



/*------------------メイン画像------------------*/
.main_area{
  position: relative;
  margin: 138px 0 65px;  
}

.main_img>img{
  width: 100vw;
  height: 100%;  
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.main_title{
  position: absolute;
  top: 0;
  left: 0;
}
.main_title>img{
  width: 100vw;
  height: 100%;  
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.main_text_area{
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.main_text_area>li:last-child{
  width: 580px;
}

.title_text{
  font-size: 2rem;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/ 
}

.low_text{
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
  padding-top: 10px;
  padding-left: 1.4rem; /*--2行目以降を1文字下--*/
  text-indent: -1.4rem; /*--2行目以降を1文字下--*/
}
/*------------------ドライブコース------------------*/
.course_area{
  margin: 46px 0 20px;
}

.spot_title{
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 10px;
  color: #2bb7b3; 
}

.course{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.course>li{
  width: 32%;
}
.course>li>a{
  display: block;
  padding: 14px 0;  
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;  
  color: #2bb7b3;
  background-color: #d2ebe9;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: 0.4s;
}
.course>li>a:hover{ 
  color: #fff;   
  background-color: #2bb7b3;
}

.mg20{
  padding-left: 10px;
}
/*------------------ページ内リンク------------------*/
#cycle{ /*--関西サイクルスポーツセンター--*/
  margin-top: -50px;
  padding-top: 50px;   
}
#park{ /*--シルバニアパーク--*/
  margin-top: -50px;
  padding-top: 50px;   
}
#flower{ /*--花の文化園--*/
  margin-top: -50px;
  padding-top: 50px;   
}
#township{ /*--奥河内くろまろの郷--*/
  margin-top: -50px;
  padding-top: 50px;   
}
#forest{ /*--滝畑ふるさと文化財の森センター--*/
  margin-top: -50px;
  padding-top: 50px;   
}
#labo{ /*--たいせつミュージアム--*/
  margin-top: -50px;
  padding-top: 50px;   
}
#festival{ /*--四季まつり--*/
  margin-top: -50px;
  padding-top: 50px;   
}
#barrel{ /*--山麓苑--*/
  margin-top: -200px;
  padding-top: 200px;   
}
#cafe{ /*--ひぐらし--*/
  margin-top: -200px;
  padding-top: 200px;   
}



/*------------------ドライブカー------------------*/
.drive_area{
  background-color: #f0f8ff;
  padding: 40px 0;
}

.drive_text_info{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  align-items: flex-end; /*--した揃え--*/
}

.drive_text{
  width: 500px;
}

.drive_text>li:nth-child(1){
  padding-bottom: 7px;  
  font-size: 2rem;
  font-weight: 600;
}
.drive_text>li:nth-child(2){
  padding-bottom: 24px;  
  font-size: 3rem;
  font-weight: 700;
}
.drive_text>li:nth-child(3){
  padding-bottom: 10px;  
  font-size: 2rem;
  font-weight: 700;
}
.drive_text>li:nth-child(4){
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/ 
}
/*------------------詳細はコチラから------------------*/
.drive_info{
  position: relative; /*--親--*/
}

.balloon_area{
  position: absolute; /*--子--*/
  top: 0;
  right: 80px;
}
.balloon_btm>a{ /*--吹き出し本体--*/
  position: relative; /*--親--*/  
  width: 180px;
  display: block;
  padding: 10px 15px;
  background: #e60069;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}
.balloon_btm>a:before{ /*--吹き出し--*/ 
  content: "";
  position: absolute; /*--子--*/
  left: -38px;
  width: 13px;
  height: 12px;
  bottom: 0;
  background: #e60069;
  border-radius: 50%;
}
.balloon_btm>a:after{ /*--吹き出し--*/
  content: "";
  position: absolute;
  left: -24px;
  width: 20px;
  height: 18px;
  bottom: 3px;
  background: #e60069;
  border-radius: 50%;
}
/*------------------試乗車・展示車情報はこちら------------------*/
.test_car>a{
  margin-top: 16px;
  display: inline-block;
  padding: 9px 0;
  width: 500px;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  color: #fff;   
  background-color: #e6003d;
  border: solid 1px #e6003d;
  border-radius: 18px;
  transition: 0.4s;   
}
.test_car>a:hover{ 
  color: #e6003d;
  background-color: #fff;
  border: solid 1px #e6003d;
}



/*------------------関西サイクルスポーツセンター------------------*/
.cycle_area{
  padding-bottom: 110px;
  background: linear-gradient(180deg, rgb(0, 104, 180)60%, rgb(84, 195, 241));
  z-index: -100;
}

.cycle_text{
  color: #fff;
}

.cycle_link>a{
  color: #fed900;
}

.cycle_item{
  position: relative; /*--親--*/ 
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
}
.cycle_item>li:nth-child(1){
  position: relative; /*--親--*/ 
  width: 670px;  
}
.cycle_item>li:nth-child(2){
  padding-top: 146px;
  width: 318px;  
  z-index: 10;
}

.cycle_img01{
  position: absolute; /*--子--*/
  top: 310px;
  left: 0;
}
.cycle_img02{
  position: absolute; /*--子--*/
  top: 330px;
  right: 10px;
  z-index: 5;
}
.cycle_img03{
  position: absolute; /*--子--*/
  bottom: 10px;
  left: 40px;
  z-index: 1;  
}
.cycle_img04{
  position: absolute; /*--子--*/
  bottom: -20px;
  right: 0;
  z-index: 1;    
}
.cycle_cloud01{
  position: absolute; /*--子--*/
  top: 16px;
  right: -560px;
}
.cycle_cloud02{
  position: absolute; /*--子--*/
  bottom: -30px;
  left: -140px;
}

.admission{
  margin-top: 18px;
  padding: 16px;
  border-radius: 10px;
  background: #fff;
}
.admission>li:nth-child(2){
  padding: 6px 0 4px;
}
.admission>li:nth-child(3){
  padding-bottom: 4px;
}

.admission_text{
  font-size: 1.4rem;
  line-height: 1.4;  
}
.admission_text>span{
  font-size: 1rem;
}

.admission_ann{
  font-size: 1rem;
  line-height: 1.2;
  padding-left: 1.1rem; /*--2行目以降を1文字下--*/
  text-indent: -1.1rem; /*--2行目以降を1文字下--*/
}

.others_area{
  position: relative; /*--親--*/  
  padding: 26px 26px 18px;
  border: solid 4px #0058aa; 
  border-radius: 30px;
  background: #fff;
  box-sizing: border-box;
}

.others_model{
  position: absolute; /*--子--*/
  bottom: -4px;
  right: -30px;
}

.others_item{
  display: flex;
  justify-content: space-between;
}
.others_item>li{
  width: 473px;
}

.others_info>li:nth-child(1){
  padding-bottom: 12px;
  text-align: center;
}
.others_info>li:nth-child(3){
  padding-top: 12px;
}
.others_info>li:nth-child(4){
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/
}

.others_sub_img{
  padding-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.museum_info{
  width: 231px;
}

.museum_img02{
  padding: 12px 0;
}

.museum_text{
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/
}



/*------------------シルバニアパーク------------------*/
.park_text{
  color: #fff;
}

.park_link>a{
  color: #fed900;
}

.park_area{
  padding-bottom: 80px;
  background: #00a73c;
}
.park_area::before {
  border-color: transparent #00a73c transparent transparent;
  border-style: solid;
  border-width: 70px 100vw 0 0;
  bottom: 0;
  content: "";
  height: 0;
}

.park_item{
  padding: 40px 0 30px;
  display: flex;
  justify-content: space-between;
}
.park_item>li:nth-child(1){
  position: relative; /*--親--*/  
}
.park_item>li:nth-child(2){
  position: relative; /*--親--*/  
  width: 578px; 
}

.park_info{
  display: flex;
  justify-content: space-between;
}

.park_fountain{
  position: absolute; /*--子--*/
  bottom: -50px;
  left: 10px;
  z-index: 1;  
}

.park_name{
  position: relative; /*--親--*/
  z-index: 10;  
}

.park_ill{
  position: absolute; /*--子--*/
  top: -70px;
  right: -200px;
}

.park_logo{
  position: absolute; /*--子--*/
  top: -30px;
  right: -40px;
}
.park_session{
  position: absolute; /*--子--*/
  bottom: -70px;
  right: -36px;
  z-index: 1;
}

.park_main{
  position: relative; /*--親--*/  
}
.park_copy{
  position: absolute; /*--子--*/
  top: 60px;
  left: 30px;
}
.park_img01{
  position: absolute; /*--子--*/
  top: 50px;
  right: 16px;
  z-index: 1;
}
.park_img02{
  position: absolute; /*--子--*/
  bottom: -50px;
  right: -70px;
}
/*------------------ハーベストの丘------------------*/
.hill_area{
  margin-top: 58px;
  padding: 20px;  
  border: solid 4px #f6ab00;
  border-radius: 20px;  
  background: #fff;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
.hill_area>li:nth-child(1){
  margin: -50px 0 0 0;
}
.hill_area>li:nth-child(2){
  position: relative; /*--親--*/  
  width: 495px;
}

.hill_cake{
  position: absolute; /*--子--*/
  bottom: -106px;
  right: -60px;
}
.hill_copy{
  position: absolute; /*--子--*/
  bottom: 80px;
  right: -60px;
}

.hill_sub{
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.hill_title{
  padding-bottom: 12px;
}

.hill_text{
  width: 276px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/
}



/*------------------花の文化園------------------*/
.flower_item{
  padding-bottom: 30px;
  display: flex;
  flex-direction: row-reverse;   
  justify-content: space-between;
}
.flower_item>li:nth-child(1){
  padding-top: 53px;  
}
.flower_item>li:nth-child(2){
  position: relative; /*--親--*/  
  width: 578px;  
}

.flower_ill01{
  position: absolute; /*--子--*/
  top: 0;
  left: -150px;
  z-index: -1;
}
.flower_meal{
  position: absolute; /*--子--*/
  bottom: 160px;
  right: -94px;
}
.flower_cooking{
  position: absolute; /*--子--*/
  bottom: -96px;
  right: -230px;
}

.flower_sub_img>li:nth-child(2){
  padding-top: 10px;  
}

.flower_sub_area{
  padding-bottom: 70px;
  display: flex;
  justify-content: space-between;
}
.flower_sub_area>li:nth-child(2){
  position: relative; /*--親--*/
  width: 540px;
}

.flower01{
  position: absolute; /*--子--*/
  top: -90px;
  right: -90px;
}
.flower02{
  position: absolute; /*--子--*/
  top: 90px;
  left: 50px;
}
.flower03{
  position: absolute; /*--子--*/
  bottom: 50px;
  right: -40px;
}
.flower04{
  position: absolute; /*--子--*/
  bottom: -60px;
  left: 40px;
}
.flower_ill02{
  position: absolute; /*--子--*/
  bottom: -120px;
  right: -90px;
  z-index: -1;
}



/*------------------奥河内くろまろの郷------------------*/
.township_item{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.township_item>li:nth-child(2){
  position: relative; /*--親--*/  
  width: 524px;  
}

.township_ill{
  position: absolute; /*--子--*/
  bottom: 20px;
  right: -40px;
  z-index: -10;
}

.township_img>li:nth-child(2){
  padding-top: 10px;  
}

.township_sub_img{
  padding: 10px 0 50px;
  display: flex;
  justify-content: space-between;  
}
/*------------------ビュッフェレストラン奥河内------------------*/
.buffet_area{
  position: relative; /*--親--*/ 
  margin-bottom: 140px;
  padding: 26px;
  border-radius: 20px;
  background: #ffea29;
  box-sizing: border-box;
}
.buffet_item{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.buffet_item>li:nth-child(2){
  width: 290px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/   
}

.buffet_img{
  display: flex;
}
.buffet_img>li:nth-child(1){
  padding-right: 14px;
}

.buffet_info>li:nth-child(1){
  padding-bottom: 20px;
}

.buffet_ill01{
  position: absolute; /*--子--*/
  top: -20px;
  left: -20px;
}
.buffet_ill02{
  position: absolute; /*--子--*/
  top: -14px;
  right: -12px;
}



/*------------------滝畑ふるさと文化財の森センター------------------*/
.forest_sub_img{
  padding: 12px 0 18px;
  display: flex;
  justify-content: space-between;  
}

.forest_item{
  padding-bottom: 140px;
  display: flex;
  justify-content: space-between;
}
.forest_item>li:nth-child(1){
  position: relative; /*--親--*/  
  width: 670px;  
}
.forest_item>li:nth-child(2){
  padding-top: 34px;  
}

.forest_board{
  padding-top: 10px;
}

.forest_indoor{
  position: absolute; /*--子--*/
  bottom: -30px;
  right: -30px;
}



/*------------------たいせつミュージアム------------------*/
.labo_main_img{
  display: flex;
  flex-direction: row-reverse;  
  justify-content: space-between;
}
.labo_main_img>li:nth-child(1){
  position: relative; /*--親--*/  
}
.labo_main_img>li:nth-child(2){
  width: 509px;  
}

.labo_copy{
  position: absolute; /*--子--*/
  top: -70px;
  right: -50px;
  z-index: -1;
}

.labo_vege{
  position: absolute; /*--子--*/
  bottom: -30px;
  left: 0;
  z-index: -1;
}


.labo_sub_img{
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
}


.labo_item_img>li:nth-child(2){
  padding: 16px 0;  
}

.labo_item{
  padding-bottom: 130px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.labo_item>li:nth-child(1){
  position: relative; /*--親--*/  
  width: 697px;  
}

.labo_ill_area{
  position: absolute; /*--子--*/
  bottom: 26px;
  right: -10px;
}

.labo_ill{
  position: relative; /*--親--*/  
}
.labo_ill>li:nth-child(2){
  position: absolute; /*--子--*/
  top: 30px;
  left: -24px;
}
.labo_ill>li:nth-child(3){
  position: absolute; /*--子--*/
  bottom: -50px;
  right: -5px;
}



/*------------------四季まつり------------------*/
.festival_sub_img{
  padding: 12px 0 32px;
  display: flex;
  justify-content: space-between;  
}

.glamping_img>li:nth-child(2){
  padding: 20px 0 10px;
}

.glamping>li:nth-child(2){
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/
}

.festival_item{
  padding-bottom: 130px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.festival_item>li:nth-child(1){
  position: relative; /*--親--*/   
  width: 578px;  
}
.festival_item>li:nth-child(2){
  width: 410px;  
}

.festival_sub01{
  position: absolute; /*--子--*/
  bottom: 240px;
  right: -74px;
}
.festival_sub02{
  position: absolute; /*--子--*/
  bottom: 20px;
  right: -40px;
}



/*------------------グルメスポット------------------*/
.gourmet{
  position: relative; /*--親--*/  
  padding: 26px;
  border-radius: 20px;
  background: #ffea29;
  box-sizing: border-box;
}

.g_ill01{
  position: absolute; /*--子--*/
  top: -24px;
  left: -16px;
}
.g_ill02{
  position: absolute; /*--子--*/
  top: -24px;
  right: -16px;
}

.gourmet_title{
  padding-bottom: 26px;
  text-align: center;
}

.gourmet_item{
  display: flex;
  justify-content: space-between;
}
.gourmet_item>li{
  width: 473px;
}

.spot_item>li:nth-child(1){
  padding-bottom: 12px;
  text-align: center;
}
.spot_item>li:nth-child(2){
  padding-bottom: 12px;
}
.spot_item>li:nth-child(4){
  padding-bottom: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/
}

.spot_sub_img{
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
/*------------------たるの店：山麓苑------------------*/
.barrel_info{
  position: relative; /*--親--*/    
}

.barrel_img{
  position: absolute; /*--子--*/
  bottom: 86px;
  right: -24px;
}
/*------------------音カフェ ひぐらし------------------*/
.cafe_info{
  position: relative; /*--親--*/    
}

.cafe_img{
  position: absolute; /*--子--*/
  bottom: 20px;
  right: -40px;
}



/*------------------バックナンバー部分------------------*/
.b_number_area{
  margin-top: 85px;
}

.b_title{
  font-size: 1.8rem;
  font-weight: 500;
  padding-bottom: 12px;
}

.back{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/*------------------最後の行を左寄せ------------------*/
.back:after{
  content: "";
  width: 32%;
}
.back:before{
  content: "";
  width: 32%;
  order: 1;
}

.back>li{
  width: 32%;
}

.back>li>a{
  margin-bottom: 25px;
  display: block;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  color: #e60069; 
  border: solid 2px #e60069;
  border-radius: 14px;
  padding: 10px 0 12px;
  transition: 0.6s;
}

.back>li>a:hover{
  color: #fff;
  background: #e60069;
  border: solid 2px #e60069;
}



/*------------------ページトップボタン------------------*/
.PageTopBtn{
  font-size: 1.4rem;
  position: fixed;
  bottom: 30px;
  right: 30px; 
}

.PageTopBtn>a{
  display: block;
  color: #ff7f00;
  background: #fff;
  border: solid 2px #ff7f00;
  width: 90px;
  height: 50px;
  line-height: 3.5;
  text-align: center;
  border-radius: 10px;
  transition: 0.6s;
}

.PageTopBtn>a:hover{
  color: #fff;
  background: #e60039;
  border: solid 2px #e60039;
}



/*------------------フッター------------------*/
.footer-area{
  margin-top: 105px;
  background-color: #f9f2f4;
  padding: 30px 0;
}

.footer_logo{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 40px 60px;
}

.copyright{
  font-size: 1rem; 
}





/*------------------タブレット版------------------*/
@media screen and (min-width: 650px) and (max-width: 960px){
  body{
    min-width: 1200px;
  } 
}





/*------------------SP版------------------*/
@media screen and (max-width: 649px){
  body{
    min-width: auto;
  }  
  
  .inner{
    padding: 0 20px;
  }
  
  .pc_img{
    display: none;
  }

  .sp_img{
    display: block;
  }
 
  .pc_br{
    display: block;
  }
  
  .sp_br{
    display: none;
  }

  .wrap{
    overflow: hidden;
   }
 
  
  
  
 
  /*------------------ヘッダー部分------------------*/
  .navi_area_sp{
    padding: 20px 20px;
    display: flex;
    justify-content: center;
  }



  /*------------------パンくずリスト部分------------------*/
  .bread_area{
    padding: 15px 20px 5px 20px;
    -webkit-overflow-scrolling: touch; /* スマホでスクロールを滑らかにする */
    overflow-x: auto; /* [必須] テキストが多い時はX軸にスクロールバーが出現するように */
  }

  /*------------------【スクロールバー】------------------*/
  .bread_area::-webkit-scrollbar {
    height: 5px;
  }
  .bread_area::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #eee;
  }
  .bread_area::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #999;
  }
  .bread_area ol{
    display: table; /* [必須]  */
  } 
  
  .breadcrumb li{
    font-size: 1.5rem;
    padding-bottom: 11px;
    display: table-cell; /* [必須]  */
    white-space: nowrap; /* [必須] テキストを改行させないように */
  }

  .breadcrumb li:after{ /* >を表示*/
    padding: 0 5px;
  }

  
  
   /*------------------ふわっと表示------------------*/
  .fadein{
    opacity : 0;
    transform: translateY(80px);
    transition: all 1s;
  }
  
  
  
  /*------------------共通テキスト------------------*/
  .text{
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .info>li>dl>dt,.info>li>dl>dd{
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .info_link>a{
    font-size: 1.3rem;    
  }
  
  .size{  /*--アイコン--*/
    font-size: 1.3rem;
    margin-left: 8px;
  }    
  
  .info{
   padding-top: 10px;
  }
  
  .info>li{
    padding-bottom: 6px;
  }

  .info_ann{
    font-size: 1.1rem;   
  }
  
  .info_mg{
    margin-left: 6px;   
  } 
  
  
  
  /*------------------マップ部分------------------*/ 
  .vertical_map{
    padding-bottom: 0;   
  }  
  /*------------------sp用グーグルマップ------------------*/  
  .access_map{
    position: relative;
    width: 100%;
    padding-bottom: 62.5%; /* = height ÷ width × 100 */
  }  
  .access_map iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
  }   
  
  

  /*------------------メイン画像------------------*/
  .main_area{
    margin: 145px 0 25px;  
  }

  .main_text_area{
    display: block;
  }
  
  .main_text_area>li:first-child{
    padding: 0 25px 18px;
  }  
  
  .main_text_area>li:last-child{
    width: auto;
  }

  .title_text{
    font-size: 1.6rem;
    line-height: 1.6; 
  }

  .low_text{
    font-size: 1.2rem;
    padding-top: 6px;
    padding-left: 1.2rem; /*--2行目以降を1文字下--*/
    text-indent: -1.2rem; /*--2行目以降を1文字下--*/ 
    text-align: justify;
    text-justify: inter-ideograph; /*--edge--*/   
  }  
  
  
  
  /*------------------ドライブコース------------------*/
  .course_area{
    margin: 30px 0 5px;
  }

  .spot_title{
    font-size: 1.8rem;
    text-align: center;
  }

  .course{
    width: auto;
  }
  .course>li{
    width: 48%;
  }

  .course>li>a{
    width: auto;
    padding: 10px 0;  
    font-size: 1.5rem;
    line-height: 1.3;
    color: #fff;   
    background-color: #2bb7b3;    
    border-radius: 8px;
  }

  .mg20{
    padding-left: 0;
  }
  /*------------------ページ内リンク------------------*/
  #cycle{ /*--関西サイクルスポーツセンター--*/
    margin-top: -140px;
    padding-top: 140px;   
  }
  #park{ /*--シルバニアパーク--*/
    margin-top: -140px;
    padding-top: 140px;   
  }
  #flower{ /*--花の文化園--*/
    margin-top: -130px;
    padding-top: 130px;   
  }
  #township{ /*--奥河内くろまろの郷--*/
    margin-top: -100px;
    padding-top: 100px;   
  }
  #forest{ /*--滝畑ふるさと文化財の森センター--*/
    margin-top: -120px;
    padding-top: 120px;   
  }
  #labo{ /*--たいせつミュージアム--*/
    margin-top: -120px;
    padding-top: 120px;   
  }
  #festival{ /*--四季まつり--*/
    margin-top: -140px;
    padding-top: 140px;   
  }
  #barrel{ /*--山麓苑--*/
    margin-top: -150px;
    padding-top: 150px;   
  }
  #cafe{ /*--ひぐらし--*/
    margin-top: -150px;
    padding-top: 150px;   
  }  

  
  
  /*------------------ドライブカー------------------*/
  .drive_area{
    padding: 20px 0;
  }

  .drive_text_info{
    display: block;
  }

  .drive_text{
    width: auto;
  }

  .drive_text>li:nth-child(1){
    padding-top: 10px; 
    padding-bottom: 10px;    
    font-size: 2rem;
    text-align: center;
  }
  .drive_text>li:nth-child(2){
    padding-bottom: 8px;   
    font-size: 3rem;
    text-align: center;
  }
  .drive_text>li:nth-child(3){
    padding-bottom: 6px;
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: center;
  }
  
  .drive_text>li:nth-child(4){
    font-size: 1.4rem;
    line-height: 1.5;
  }  
  /*------------------詳細はコチラから------------------*/
  .balloon_area{
    top: -40px;
    right: 15px;
  }
  .balloon_btm>a{ /*--吹き出し本体--*/
    width: 140px;
    padding: 8px 10px;
  }
  .balloon_btm>a:before{ /*--吹き出し--*/ 
    display: none;
  }
  .balloon_btm>a:after{ /*--吹き出し--*/
    display: none;
  }
  /*------------------試乗車------------------*/
  .test_car>a{
    margin-top: 10px;
    display: block;  
    padding: 9px 0;
    width: auto;
  }

  

  /*------------------関西サイクルスポーツセンター------------------*/
  .cycle_name{
    width: 75vw;
    padding: 12px 0 10px;
  }  
  
  .cycle_area{
    padding-bottom: 50px;
  }

  .cycle_item{
    padding-bottom: 20px;
    display: block;
  }
  .cycle_item>li:nth-child(1){
    width: auto;  
  }
  .cycle_item>li:nth-child(2){
    padding-top: 24px;
    width: auto;  
  }

  .cycle_img01{
    position: static;
  }

  .cycle_cloud01{
    top: -14px;
    right: -100px;
    width: 70%;
  }

  .admission{
    padding: 12px;
  }

  .others_area{
    padding: 12px 12px 12px;
    border: solid 3px #0058aa; 
    border-radius: 15px;
  }

  .others_model{
    right: -14px;
    width: 44vw;
  }

  .others_item{
    display: block;
  }
  .others_item>li{
    width: auto;
  }
  .others_item>li:nth-child(1){
    padding-bottom: 20px;
  }
  
  .others_info>li:nth-child(1){
    padding-bottom: 10px;
  }
  .others_info>li:nth-child(3){
    padding-top: 8px;
  }
  .others_info>li:nth-child(4){
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .others_sub_img{
    padding-bottom: 7px;
  }
  .others_sub_img>li{
    width: 49%;
  }
  
  .museum_info{
    width: 157px;
  }

  .museum_img02{
    padding: 8px 0 7px;
  }

  .museum_text{
    font-size: 1.1rem;
    line-height: 1.4;
  }



  /*------------------シルバニアパーク------------------*/
  .park_area{
    padding-bottom: 40px;
  }
  .park_area::before {
    border-width: 20px 100vw 0 0;
  }

  .park_item{
    padding: 10px 0 15px;
    display: block;
  }
  .park_item>li:nth-child(1){
    z-index: 10;
  }  
  .park_item>li:nth-child(2){
    width: auto; 
  }

  .park_info{
    display: block;
  }

  .park_name{
    width: 58vw;
    padding: 12px 0 10px;    
  }

  .park_ill{
    top: -10px;
    right: -80px;
    width: 70vw;
  }

  .park_logo{
    top: 18px;
    right: -10px;
    width: 30vw;
  }
  
  .park_session{
    bottom: 90px;
    right: -10px;
    width: 36vw;
  }

  .park_copy{
    top: 40px;
    left: 20px;
    z-index: 10;
    width: 44vw;   
  }

  .park_img02{
    bottom: 174px;
    right: 0;
    width: 44vw;  
  }
  /*------------------ハーベストの丘------------------*/
  .hill_area{
    margin-top: 24px;
    padding: 12px;  
    border-radius: 15px;  
    display: block;
  }
  .hill_area>li:nth-child(1){
    margin: 0 0 0 0;
  }
  .hill_area>li:nth-child(2){
    width: auto;
  }

  .hill_cake{
    bottom: -50px;
    right: -30px;
    width: 44vw;
  }
  
  .hill_copy{
    bottom: 70px;
    right: -20px;
    width: 40vw;  
  }

  .hill_sub{
    padding-bottom: 0;
    display: none;
  }

  .hill_title{
    padding-top: 12px;
    padding-bottom: 6px;
  }

  .hill_text{
    width: 165px;
    font-size: 1.1rem;
    line-height: 1.4;
  }

  
  
  /*------------------花の文化園------------------*/
  .flower_name{
    width: 88vw;
    padding: 12px 0 10px;
  }   
  
  .flower_item{
    padding-bottom: 10px;
    display: block;
  }
  .flower_item>li:nth-child(1){
    padding-top: 0;  
  }
  .flower_item>li:nth-child(2){
    width: auto;  
  }

  .flower_ill01{
    left: -50px;
    width: 80vw;
  }
  .flower_meal{
    bottom: 100px;
    right: -10px;
    width: 40vw;
  }

  .flower_sub_area{
    padding-bottom: 40px;
    display: block;
  }
  
  .flower_sub_area>li:nth-child(2){
    position: static;
    width: auto;
  }

  
  
  /*------------------奥河内くろまろの郷------------------*/
  .township_name{
    width: 105vw;
    padding: 12px 0 10px;
  }   
  
  .township_item{
    display: block;
  }
  .township_item>li:nth-child(2){
    width: auto;  
  }

  .township_ill{
    width: 80vw;
  }

  .township_sub_img{
    padding: 5px 0 30px;  
  }
  .township_sub_img>li{
    width: 49%;  
  }  
  
  
  
  /*------------------ビュッフェレストラン奥河内------------------*/
  .buffet_area{
    margin-bottom: 40px;
    padding: 12px;
    border-radius: 15px;
  }
  .buffet_item{
    display: block;
  }
  .buffet_item>li:nth-child(2){
    width: auto;
    font-size: 1.1rem;
    line-height: 1.4;   
  }

  .buffet_img{
    padding-bottom: 10px;
    display: block;
  }
  .buffet_img>li:nth-child(1){
    padding-right: 0;
  }

  .buffet_info>li:nth-child(1){
    padding-bottom: 5px;
  }

  .buffet_ill01{
    position: absolute; /*--子--*/
    top: -16px;
    left: -16px;
    width: 30vw;
  }
  .buffet_ill02{
    position: absolute; /*--子--*/
    top: -12px;
    right: -10px;
    width: 30vw;  
  }

  

  /*------------------滝畑ふるさと文化財の森センター------------------*/
  .forest_name{
    width: 105vw;
    padding: 12px 0 10px;
  }   
  
  .forest_sub_img{
    padding: 10px 0 0; 
  }
  .forest_sub_img>li{
    width: 49%; 
  }  

  .forest_item{
    padding-bottom: 20px;
    display: block;
  }
  .forest_item>li:nth-child(1){
    position: static;  
    width: auto;  
  }
  .forest_item>li:nth-child(2){
    padding-top: 20px;  
  }

  .forest_board{
    padding-top: 0;
  }

  

  /*------------------たいせつミュージアム------------------*/
  .labo_name{
    width: 100vw;
    padding: 12px 0 10px;
  }   
  
  .tunnel{
    margin: 0 20px;
  }  
  
  .labo_main_img{
    display: block;
  }
  .labo_main_img>li:nth-child(2){
    width: auto;  
  }

  .labo_copy{
    top: -50px;
    right: -16px;
    width: 50vw;
  }

  .labo_vege{
    bottom: -10px;
    left: 0;
    z-index: 10;
    width: 20vw;
  }

  .labo_sub_img{
    padding-top: 20px;
  }
  .labo_sub_img>li{
    width: 49%;
  }  

  .labo_item_img{
    padding-top: 20px;
    display: flex;
    justify-content: space-between;   
  }  
  .labo_item_img>li{
    width: 49%;   
  }   
  .labo_item_img>li:nth-child(2){
    padding: 0 0;  
  }

  .labo_item{
    padding-bottom: 40px;
    display: block;
  }
  .labo_item>li:nth-child(1){
    position: static;  
    width: auto;  
  }

  .labo_ill_area{
    position: static;
    bottom: 0;
    right: 0;
  }

  .labo_ill{
    text-align: center;
  }
  .labo_ill>li:nth-child(2){
    top: 30px;
    left: 0;
    width: 10vw;
  }
  .labo_ill>li:nth-child(3){
    bottom: -10px;
    right: 0;
    width: 16vw;  
  }  

  

  /*------------------四季まつり------------------*/
  .festival_name{
    width: 105vw;
    padding-bottom: 10px;
  }   
  
  .festival_sub_img{
    padding: 10px 0 12px;  
  }
  .festival_sub_img>li{
    width: 49%;  
  }
  
  .glamping_img{
    padding-top: 8px;
    display: flex;
    justify-content: space-between;  
  }  
  .glamping_img>li{
    width: 48%;
  }
  .glamping_img>li:nth-child(2){
    padding: 0 0 0;
  }
 
  .glamping>li:nth-child(2){
    padding-top: 6px;
    font-size: 1.1rem;
    line-height: 1.4;
  }
 
  .festival_item{
    padding-bottom: 34px;
    display: block;
  }
  .festival_item>li:nth-child(1){
    width: auto;  
  }
  .festival_item>li:nth-child(2){
    width: auto;  
  }

  .festival_sub02{
    bottom: 90px;
    right: -10px;
    width: 40vw;
  }

  

  /*------------------グルメスポット------------------*/
  .gourmet{
    padding: 12px;
    border-radius: 15px;
  }

  .g_ill01{
    top: -15px;
    left: -10px;
    width: 40vw;
  }
  .g_ill02{
    top: -15px;
    right: -10px;
    width: 40vw;  
  }

  .gourmet_title{
    margin: 0 auto;
    padding: 10px 0 14px;
    width: 70vw;
  }
  
  .gourmet_item{
    display: block;
  }
  .gourmet_item>li{
    width: auto;
  }
  .gourmet_item>li:nth-child(1){
    padding-bottom: 22px;
  }
  
  .spot_item>li:nth-child(1){
    padding-bottom: 8px;
  }
  .spot_item>li:nth-child(2){
    padding-bottom: 6px;
  }
  .spot_item>li:nth-child(4){
    padding-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .spot_sub_img{
    padding-bottom: 0;
    display: block;
  }
  
  .sp_map{
    position: relative;
    width: 100%;
    padding-bottom: 43.5%; /* = height ÷ width × 100 */
  }  
  .sp_map iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
  }   
  
  .sp_info>li>dl>dt,.info>li>dl>dd{
    font-size: 1.1rem;
    line-height: 1.2;
  }
  .sp_info{
   padding-top: 8px;
  }
  .sp_info>li{
    padding-bottom: 4px;
  }  
  
  .sp_info_link>a{
    font-size: 1.2rem;
    color: #c71585;
  }  

  .sp_size{  /*--アイコン--*/
    font-size: 1.2rem;
    margin-left: 3px;
  }  
  /*------------------たるの店：山麓苑------------------*/
  .barrel_img{
    bottom: 54px;
    right: -40px;  
    width: 40vw;
  }
  /*------------------音カフェ ひぐらし------------------*/
  .cafe_img{
    bottom: 56px;
    right: -20px;
    width: 40vw;
  }  
  

  
  /*------------------バックナンバー部分------------------*/
  .b_number_area{
    margin-top: 40px;
  }

  .b_title{
    text-align: center;
  }

  .back{
    display: block; /*--解除--*/
  }

  .back>li{
    width: 100%;
    padding-bottom: 20px;
  }
  .back>li:last-child{
    padding-bottom: 0;
  }
  
  .back>li>a{
    margin-bottom: 0px;
    font-size: 1.5rem;
    line-height: 1.3;
  }  



  /*------------------ページトップ------------------*/
  .PageTopBtn{
    font-size: 1.4rem;
    position: fixed; /*配置場所を固定*/
    bottom: 15px; /*下からの位置*/
    right: 15px; /*右からの位置*/
  }

  
  
  /*------------------フッター------------------*/ 
  .footer-area{
    margin-top: 25px;
    padding: 20px 0 20px 0;
  }

  .footer_logo{
    display: block;
    margin: 10px 20px 10px;
  }
  
  .w_logo_bot{
    margin: 0 auto;
  }
  
  .copyright{
    font-size: 1.2rem; 
    line-height: normal;
    padding: 10px 0 0;
  }

  
  
 }



