@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 */
}

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

a{
  color: #000000;
}

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

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

.clearfix:after{
  content: "";    /* 擬似要素を実体化 */
  clear: both;    /* floatを解除する */
  display: block; /* ブロック要素にする */
}

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

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

.pc_br{
  display: none;
}



/*------------------ふわっと表示------------------*/
.fadein{
  opacity : 0;
  transform: translateY(40px);
  transition: all 1s;
}
/*------------------ぶるぶる------------------*/
.shake{
  animation: hurueru .5s  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)}
}



/*------------------ヘッダー------------------*/
.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-color: #fff;
}



/*------------------パンくずリスト部分------------------*/
.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;
}



/*------------------ヒーローイメージ部分------------------*/
.main_img{
  margin-top: 138px;
}

.lead_area{
  display: flex;
  justify-content: space-between; /*--両端に配置、均等に間隔をあけて--*/
  margin-top: 65px;
}

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

.low_text{
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  padding-top: 15px;
  padding-left: 1.4rem; /*--2行目以降を1文字下--*/
  text-indent: -1.4rem; /*--2行目以降を1文字下--*/
}



/*------------------ドライブコース部分------------------*/
.course_title{
  font-size: 2.4rem;
  font-weight: 500;
  padding: 9px 0 10px;
  color: #ee7800; 
}

.course_kino{
  width: 400px;
  padding: 20px 10px 10px;  
  text-align: center;  
  background-color: #fde8c6;
  border-radius: 10px;
  margin-bottom: 30px;
  box-sizing: border-box;
}

.kino{  
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  padding-top: 14px;
}

.kino>li>a{
  width: 184px;
  display: block;
  padding: 10px 0;  
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;  
  color: #ee7800;   
  background-color: #fff;
  border-radius: 20px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
}

.kino>li>a:hover{ 
  color: #fff;   
  background-color: #ee7800;
}

.course>li>a{
  width: 400px;
  display: block;
  padding: 10px 0;  
  font-size: 2rem;
  font-weight: 500;
  text-align: center;  
  color: #ee7800;   
  background-color: #fde8c6;
  border-radius: 20px;
  margin-bottom: 30px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.course>li:last-child{
  margin-bottom: 0;
}

.course>li>a:hover{ 
  color: #fff;   
  background-color: #ee7800;
}
/*------------------ページ内リンク------------------*/
#farms{ /*--ROCK STAR FARMs--*/
  margin-top: -220px;
  padding-top: 220px;   
}
#library{ /*--和歌山市民図書館--*/
  margin-top: -220px;
  padding-top: 220px;   
}
#museum{ /*--和歌山市立博物館--*/
  margin-top: -220px;
  padding-top: 220px;   
}
#zoo_l{ /*--和歌山城公園動物園--*/
  margin-top: -220px;
  padding-top: 220px;   
}
#history_m{ /*--わかやま歴史館--*/
  margin-top: -220px;
  padding-top: 220px;   
}
#science_m{ /*--和歌山市立こども科学館--*/
  margin-top: -220px;
  padding-top: 220px;   
}
#mokomoko_m{ /*--モコモコミュージアム--*/
  margin-top: -220px;
  padding-top: 220px;   
}
#town_search{ /*--まちなか探索ぶらくり丁--*/
  margin-top: -190px;
  padding-top: 190px;   
}



/*------------------Today’sドライブカー部分------------------*/
.drive_space{
  margin-top: 70px;
  background-color: #f5f5f5;
  padding: 40px 0;
}

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

.drive_area{
  width: 498px;
}

.drive_name{
  display: flex;
  align-items: center;
  position: relative; /*--親--*/
}

.drive_title_low{
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 8px;
}

.drive_title{
  font-size: 3rem;
  font-weight: 900;
  margin-left: 10px;
}

.drive_text{
  font-size: 1.6rem;
  line-height: 1.5;
  padding-bottom: 20px;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/ 
}

.drive_img{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
}
/*------------------詳しくはコチラから------------------*/
.balloon_area{
  position: absolute; /*--子--*/
  top: -70px;
  right: 0;
}
.balloon_btm{ /*--吹き出し本体--*/
  position: relative; /*--親--*/
  padding: 10px 15px;
  background: #e60069;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}
.balloon_btm:before{ /*--吹き出し--*/ 
  content: "";
  position: absolute; /*--子--*/
  left: -38px;
  width: 13px;
  height: 12px;
  bottom: 0;
  background: #e60069;
  border-radius: 50%;
}
.balloon_btm:after{ /*--吹き出し--*/
  content: "";
  position: absolute;
  left: -24px;
  width: 20px;
  height: 18px;
  bottom: 3px;
  background: #e60069;
  border-radius: 50%;
}
/*------------------各店舗リンク部分------------------*/
.test_car_area{
  display: flex;
  margin-top: 20px;
}

.test_car{
  margin-right: 24px;
  width: 160px;
  padding: 9px 0;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
  background: #e6003d; 
  border: solid 1px #e6003d;
  border-radius: 18px;
}

.shop_name{
  width: 100%;
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
} 

.shop_name>li>a{
  width: 96px;
  display: block;
  padding: 9px 0;
  font-size: 1.8rem;
  font-weight: 400;
  color: #e6003d;
  border: solid 1px #e6003d;
  border-radius: 18px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s; 
} 

.shop_name>li>a:hover{ 
  color: #fff;   
  background-color: #e6003d;
}



/*------------------共通テキスト部分------------------*/
.type_area{
  display: flex;
  padding-bottom: 10px;
}

.type{
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  padding: 8px;
  background-color: #000;
  margin-right: 12px;
}

.step_type{
  width: 86px;
  margin-bottom: 9px;  
}

.step_type_area{
  padding: 25px 0 10px;
}

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

.floor_text>li{
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/ 
}
.floor_text>li:last-child{
  padding-bottom: 0;
}

dl{
  display: flex;
}

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

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

.address_area{
  display: flex;
  padding-top: 40px;
}

.map{
  padding-right: 18px;
}



/*------------------キーノ和歌山部分------------------*/
.kino_main_img{
  width: 100%;
  height: 0;
  padding-top: calc(890 / 1200 * 100%); /* calc(画像高さ÷画像横幅×100%) */
  background: url("../drive/drive_img/kino-img.jpg") center / cover no-repeat;  
}

.kino_area{
  padding-bottom: 60px;
}

.kino_color{
  background: #00a0e9;
}

.kino_shop{
  position: relative; /*--親--*/
}

.kino_copy{
  position: absolute; /*--子--*/
  top: -40px;
  left: 90px;
}

.kino_img{
  padding-bottom: 25px;
}

.kino_sub_img{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  padding-top: 10px;
}

.kino_text{
  width: 650px;
}

.kino_info{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
}

.kino_pat{
  margin: 0 calc(50% - 50vw); /*--半分ずらして半分戻す--*/
  width: 100vw;  
}

.kino_map{
  position: relative; /*--親--*/
}

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

.add_info_area{
  padding-top: 10px;
}



/*------------------和歌山市民図書館------------------*/
.library_area{
  padding-bottom: 60px;
}

.library_img{
  position: relative; /*--親--*/
}

.library_copy{
  position: absolute; /*--子--*/
  bottom: -280px;
  left: 0;
}

.library_color{
  background: #e60012;
}

.floor_text_area{
  padding-top: 15px;
}

.f01_color{
  color: #f18b00;
  font-weight: 500;
}

.f02_color{
  color: #e95383;
  font-weight: 500;
}

.f03_color{
  color: #601986;
  font-weight: 500;
}

.f04_color{
  color: #45b035;
  font-weight: 500;
}

.rooftop_color{
  color: #00a0e9;
  font-weight: 500;
}

.library_info_area{
  position: relative; /*--親--*/
  padding-top: 25px;
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  align-items: flex-end; /*--下揃え--*/
  z-index: 100;
}

.library_cha{
  position: absolute; /*--子--*/
  top: 180px;
  right: -20px;  
}

.library_text_info{
  width: 597px;
}

.library_sub_img{
  padding-top: 20px;
  display: flex;
}

.library_sub_img>li{
  padding-right: 13px;
}
.library_sub_img>li:last-child{
  padding-right: 0;
}

.library_bot{
  position: relative; /*--親--*/ 
}

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

.mgr-16{
  margin-left: 16px;
}



/*------------------和歌山市立博物館------------------*/
.museum_area{
  margin-bottom: 100px;
  padding: 20px 0;
  background: #fdede4;
}

.museum_img{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  padding-bottom: 25px;
}

.museum_sub_img>li{
  padding-bottom: 10px;
}
.museum_sub_img>li:last-child{
  padding-bottom: 0;
}

.museum_color{
  background: #0068b7;
}



/*------------------天守閣や庭園以外にも------------------*/
.w_castle_area{
  padding-bottom: 100px;
}

.castle_block_area{
  padding-bottom: 25px;
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/  
  align-items: flex-end; /*--下揃え--*/
}

.castle_img{
  position: relative; /*--親--*/
}

.castle_walk{
  position: absolute; /*--子--*/
  bottom: 160px;
  left: 360px; 
}

.castle_sub_img{
  padding-top: 28px;
  display: flex;
  align-items: flex-end; /*--下揃え--*/
}

.castle_sub_img>li{
  padding-right: 14px;
}
.castle_sub_img>li:last-child{
  padding-right: 0;
}
/*------------------和歌山城公園動物園------------------*/
.zoo_title{
  position: relative; /*--親--*/
}

.penguins{
  position: absolute; /*--子--*/
  bottom: 10px;
  right: 40px;   
}

.zoo_block{
  width: 380px;
}

.zoo_color{
  background: #ed6d1f;
}

.zoo_map{
  padding-top: 40px;
}
/*------------------わかやま歴史館------------------*/
.history_color{
  background: #0068b7;
}



/*------------------和歌山市立こども科学館部分------------------*/
.scienc_area{
  background: url("../drive/drive_img/science5.jpg") center / cover no-repeat;
  padding: 40px 0 50px; 
}

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

.scienc_type_area{
  padding: 25px 0 10px;
}

.scienc_color{
  background: #8ec43e;
}

.scienc_info{
  width: 395px;
}

.scienc_sub_img{
  padding-top: 7px;
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
}



/*------------------モコモコミュージアム------------------*/
.moko_area{
  background: url("../drive/drive_img/moko-pat.jpg") center / cover no-repeat;
  padding: 60px 0 40px;
}

.moko_img{
  position: relative; /*--親--*/
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  padding-bottom: 25px;
}

.moko_round{
  position: absolute; /*--子--*/
  bottom: -170px;
  right: -20px;
}

.moko_sub_img>li{
  padding-bottom: 10px;
}
.moko_sub_img>li:last-child{
  padding-bottom: 0;
}

.moko_type_area{
  padding: 25px 0 10px;
}

.moko_color{
  background: #ea545d;
}

.scienc_type{
  width: 86px;
  background: #8ec43e;
  margin-bottom: 9px;
}

.moko_text{
  width: 640px;
}

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

.moko_cake{
  position: relative; /*--親--*/
  margin-bottom: 50px;
}

.moko_cap{
  position: absolute; /*--子--*/
  bottom: -50px;
  left: 30px; 
  font-size: 1.5rem;
  line-height: 1.5;
}



/*------------------まちなか探索ぶらくり丁------------------*/
.town_main_img{
  width: 100%;
  height: 0;
  padding-top: calc(407 / 1200 * 100%); /* calc(画像高さ÷画像横幅×100%) */
  background: url("../drive/drive_img/retro-img.jpg") center / cover no-repeat;  
}

.town_area{
  background: #f7f0ec;
  padding-bottom: 80px;
}

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

.left_area{
  position: relative; /*--親--*/  
}

.town_map{
  position: absolute; /*--子--*/
  top: -520px;
  left: 30px; 
}

/*------------------右------------------*/
.taitan{
  position: relative; /*--親--*/
  padding: 27px 0 50px
}

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


.lemonade{
  padding-bottom: 50px
}

.town_item{
  width: 500px;
}

.town_title{
  padding-bottom: 16px;
}

.town_text{
  padding-top: 10px;
}

.town_info{
  padding-top: 10px;
}

.town_info>dl{
  padding-bottom: 3px;
}
.town_info>dl:last-child{
  padding-bottom: 0;
}

.taitan_info{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  flex-direction: row-reverse; /*--右から左--*/
}

.taitan_sub_img{
  padding-top: 8px;
}

.taitan_text{
  width: 227px;
}

.lemon_img{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
}

.lemon_sub>li{
  padding-bottom: 7px;
}
.lemon_sub>li:last-child{
  padding-bottom: 0;
}

.stone_oven{
  padding-bottom: 30px;
}

.oven_img{
  position: relative; /*--親--*/
}

.oven_lunch{
  position: absolute; /*--子--*/
  bottom: 0;
  right: 0; 
}

.oven>li{
  padding-bottom: 10px;
}
.oven>li:last-child{
  padding-bottom: 0;
}
/*------------------ポポロハスマーケット------------------*/
.market_area{
  background: url("../drive/drive_img/poporp-pat.png") center / cover no-repeat;
  padding: 60px 40px 40px;
}

.market_text{
  padding-top: 20px;
  color: #fff;
}

.market_img_area{
  padding-top: 30px;
}

.market_sub_img{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  padding-top: 9px;
}

.market_sub_img>li{
  padding-right: 9px;
}
.market_sub_img>li:last-child{
  padding-right: 0;
}



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

.mgr-10{
  margin-left: 10px;
}

.back>li{
  width: 500px;
  padding-bottom: 24px;
}
.back>li:last-child{
  padding-bottom: 0;
}

.back>li>a{
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  color: #e60069; 
  border: solid 2px #e60069;
  border-radius: 21px;
  padding: 10px 0 10px 20px;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  transition: 0.6s;
}

.back>li>a:hover{
  color: #fff;
  background: #e60069; /*マウスオーバー時の背景色*/
  border: solid 2px #e60069;
}

.back_title{
  font-size: 1.9rem;
  font-weight: 500;
  padding-bottom: 8px;
}



/*------------------ページトップボタン------------------*/
.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;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  transition: 0.6s;
}

.PageTopBtn>a:hover{
  color: #fff;
  background: #e60039; /*マウスオーバー時の背景色*/
  border: solid 2px #e60039;
}



/*------------------フッター------------------*/
.footer-area{
  margin-top: 40px;
  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; 
}



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

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

  
  /*------------------ヘッダー------------------*/
  .logo{
    justify-content: center;
  }


  
  
  /*------------------パンくずリスト部分------------------*/
  .bread_area{
    -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;
  }
  
  
  
  /*------------------ヒーローイメージ部分------------------*/
  .sp_main_img{
    margin-top: 170px;
  }

  .lead_area{
    display: block; /*--解除--*/
    margin-top: 12px;
  }

  .lead_text{
    width: auto;
    font-size: 1.7rem;
  }

  .low_text{
    font-size: 1.1rem;
    padding-top: 8px;
    padding-left: 1.1rem; /*--2行目以降を1文字下--*/
    text-indent: -1.1rem; /*--2行目以降を1文字下--*/
    text-align: justify;
    text-justify: inter-ideograph; /*--edge--*/   
  }



  /*------------------Today’sドライブカー部分------------------*/
  .drive_space{
    margin-top: 35px;
    padding: 20px 0;
  }

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

  .drive_area{
    width: auto;
  }

  .drive_name{
    padding-top: 10px;
  }

  .drive_title_low{
    font-size: 1.8rem;
    line-height: 1.3;
    padding-bottom: 4px;
  }

  .drive_title{
    font-size: 2.8rem;
    margin-left: 0;
  }

  .drive_text{
    font-size: 1.4rem;
    padding-bottom: 15px; 
  }
  /*------------------詳しくはコチラから------------------*/
  .balloon_area{
    top: -15px;
    right: 10px;
  }
  
  .balloon_btm{ /*--吹き出し本体--*/
    font-size: 1.5rem;
  }
  /*------------------各店舗リンク部分------------------*/
  .test_car_area{
    display: block; /*--解除--*/
    margin-top: 0;
  }

  .test_car{
    margin-right: 0;
    width: 180px;
    padding: 6px 0;
    border-radius: 14px;
    margin: 0 auto;
  }

  .shop_name{
    width: auto;
    flex-wrap: wrap; /*--上から下繰り返し--*/
  } 

  .shop_name>li{
    width: 48%; /*--幅--*/
    margin-top: 15px;
  } 
  
  .shop_name>li>a{
    width: auto;
    padding: 9px 0;
  } 



  /*------------------共通テキスト部分------------------*/
  .type_area{
    display: flex;
    padding-bottom: 6px;
  }

  .sp_type_area{
    display: flex;
    padding: 0 0 6px;
  }
  
  .type{
    font-size: 1rem;
    padding: 5px;
    margin-right: 8px;
  }

  .step_type{
    width: auto;
    margin-bottom: 0;  
  }

  .text{
    font-size: 1.4rem;
  }

  .floor_text>li{
    padding-bottom: 14px;
    font-size: 1.4rem;
  }

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

  .information{
    padding-top: 5px;
  }
  
  .information>dl{
    padding-bottom: 5px;
  }

  .address_area{
    display: block; /*--解除--*/
    padding-top: 15px;
  }

  .map{
    padding-right: 0;
  }
  /*------------------sp用グーグルマップ------------------*/
  .gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 62.89%;
    position: relative;
  }
  .gmap iframe{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
  
  
  
  /*------------------キーノ和歌山部分------------------*/
  .kino_main_img{
    width: 100%;
    height: 0;
    padding-top: calc(1017 / 768 * 100%); /* calc(画像高さ÷画像横幅×100%) */
    background: url("../drive/drive_img/kino-img_sp.jpg") center / cover no-repeat;  
  }

  .kino_area{
    padding-bottom: 35px;
  }

  .kino_copy{
    width: 50%;
    top: -30px;
    left: 40px;
  }

  .kino_img{
    padding-bottom: 15px;
  }

  .kino_sub_img>li{
    padding-right: 5px;
  }

  .kino_sub_img>li:last-child{
    padding-right: 0;
  }  
  
  .kino_text{
    width: auto;
  }

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

  .kino_pat{
    padding-top: 15px; 
  }

  .kino_map{
    padding-top: 15px;
  }

  .kino_cha{
    bottom:-15px;
    right: 0;
  }

  .add_info_area{
    padding-top: 5px;
  }



  /*------------------和歌山市民図書館------------------*/
  .library_area{
    padding-bottom: 30px;
  }

  .library_img{
    padding-bottom: 10px;
  }

  .library_copy{
    width: 55%;
    bottom: -110px;
    left: 0;
  }
  
  .library_info_area{
    position: static; /*--解除--*/
    padding-top: 0;
    display: block; /*--解除--*/
  }

  .sp_library_cha{
    position: absolute; /*--子--*/
    width: 25%;
    bottom: 20px;
    right: 0;  
  }

  .sp_address_area{
    position: relative; /*--親--*/
  }
  
  .blank{
    width: 167px;  
  }  

  .sp_library_img{
    display: flex;
    justify-content: space-between; /*--両端配置、均等に間隔--*/
    padding-bottom: 15px;
  }  
  
  .kino_img{
    padding-bottom: 15px;
  }

  .kino_sub_img>li{
    padding-right: 5px;
  }

  .kino_sub_img>li:last-child{
    padding-right: 0;
  }   
  
  .library_text_info{
    width: auto;
  }

  .sp_library_sub_img{
    padding-top: 20px;
    display: flex;
    justify-content: space-between; /*--両端配置、均等に間隔--*/
  }
  
  .library_sub_img{
    padding-top: 0;
    padding-right: 10px;
    display: block; /*--解除--*/
  }

  .library_sub_img>li{
    padding-right: 0;
    padding-bottom: 6px;
  }
  .library_sub_img>li:last-child{
    padding-right: 0;
  }

  .library_bot{
    position: static; /*--解除--*/ 
  }

  .library_model{
    position: static; /*--解除--*/
  }

  .mgr-16{
    margin-left: 0;
  }



  /*------------------和歌山市立博物館------------------*/
  .museum_area{
    margin-bottom: 30px;
    padding: 25px 0 0;
  }

  .museum_img{
    display: block; /*--解除--*/
    padding-bottom: 15px;
  }

  .museum_sub_img{
    display: flex;
    justify-content: space-between; /*--両端配置、均等に間隔--*/
    padding-top: 10px;
  }

  .museum_sub_img>li{
    padding-bottom: 0;
    padding-right: 5px;
  }
  .museum_sub_img>li:last-child{
    padding-right: 0;
  }

  
  
  /*------------------天守閣や庭園以外にも------------------*/
   .castle_img{
    margin: 0 calc(50% - 50vw); /*--半分ずらして半分戻す--*/
    width: 100vw;   
  }  

  .w_castle_area{
    padding-bottom: 30px;
  }

  .castle_block_area{
    padding-bottom: 0;
    display: block; /*--解除--*/
  }

  .sp_castle_img{
    position: relative; /*--親--*/
  }

  .sp_castle_copy{
    position: absolute; /*--子--*/
    top: -15px;
    left: 10px;
    width: 80%;
  }

  .sp_castle_img_area{
    padding: 25px 0 15px;
  } 
  
  .sp_castle_sub_img{
    display: flex;
    justify-content: space-between; /*--両端配置、均等に間隔--*/
    padding-bottom: 10px;
  }  
  
  .sp_castle_sub_img>li{
    padding-right: 10px;
  }

  .sp_castle_sub_img>li:last-child{
    padding-right: 0;
  } 

  .castle_sub_img{
    padding-top: 0;
    display: block; /*--解除--*/
  }
  /*------------------和歌山城公園動物園------------------*/
  .goat_img{
    padding-bottom: 15px;
  }  
  
  .zoo_title{
    position: static; /*--解除--*/
  }

  .penguins{
    position: absolute; /*--子--*/
    bottom: 10px;
    right: 20px;   
  }

  .penguins_add_area{
    position: relative; /*--親--*/  
  } 
  
  .zoo_block{
    width: auto;
  }

  .zoo_map{
    padding-top: 0;
  }

  .sp_zoo_map{
    padding-top: 15px;
  }



  /*------------------和歌山市立こども科学館部分------------------*/
  .scienc_area{
    background: url("../drive/drive_img/science5_sp.jpg") center / cover no-repeat;
    padding: 20px 0 20px; 
  }

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

  .scienc_info{
    width: auto;
  }

  .sp_scienc_sub_img{
    display: flex;
    justify-content: space-between; /*--両端配置、均等に間隔--*/
    padding-bottom: 15px;
  }
  /*------------------モコモコミュージアム------------------*/
  .moko_area{
    background: url("../drive/drive_img/moko-pat_sp.jpg") center / cover no-repeat;
    padding: 20px 0 20px;
  }

  .moko_img{
    position: static; /*--解除--*/
    display: block; /*--解除--*/
    padding-bottom: 15px;
  }

  .moko_sub_img{
    display: flex;
    justify-content: space-between; /*--両端配置、均等に間隔--*/
    padding-top: 10px;
  }  

  .moko_sub_img>li{
    padding-bottom: 0;
    padding-right: 10px;
  }
  .moko_sub_img>li:last-child{
    padding-right: 0;
  }

  .moko_text{
    width: auto;
  }

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

  .moko_cake{
    position: relative; /*--親--*/
    margin-bottom: 50px;
    padding-top: 25px;
  }

  .moko_cap{
    bottom: -30px;
    left: 0; 
    font-size: 1.3rem;
  }



  /*------------------まちなか探索ぶらくり丁------------------*/
  .town_main_img{
    width: 100%;
    height: 0;
    padding-top: calc(772 / 768 * 100%); /* calc(画像高さ÷画像横幅×100%) */
    background: url("../drive/drive_img/retro-title_sp.png") center / cover no-repeat;  
  }

  .town_area{
    padding-bottom: 20px;
  }

  .left_area{
    position: static; /*--解除--*/  
  }

  .town_map{
    position: static; /*--子--*/
  }

  .taitan{
    position: static; /*--解除--*/
    padding: 30px 0 30px;
  }  
  
  .blue{
    padding-bottom: 30px
  }

  .lemonade{
    padding-bottom: 30px
  }

  .town_item{
    width: auto;
  }

  .town_title{
    padding-bottom: 8px;
  }

  .town_text{
    padding-top: 8px;
  }

  .town_info{
    padding-top: 6px;
  }

  .town_info>dl{
    padding-bottom: 4px;
  }

  .taitan_info{
    flex-direction: row; /*--左から右--*/
  }

  .taitan_text{
    width: 282px;
    padding-left: 12px;
  }

  .lemon_img{
    display: block;
  }

  .lemon_sub{
    display: flex;
    justify-content: space-between; /*--両端配置、均等に間隔--*/
    padding-top: 7px;
  } 

  .lemon_sub>li{
    padding-bottom: 0;
    padding-right: 10px;
  }
  .lemon_sub>li:last-child{
    padding-bottom: 0;
    padding-right: 0;
  }

  .oven_img{
    position: static; /*--親--*/
  }
  
  .oven{
    display: flex;
    justify-content: space-between; /*--両端配置、均等に間隔--*/
    padding-top: 7px;
  }

  .oven>li{
    padding-bottom: 0;
    padding-right: 7px;
  }
  .oven>li:last-child{
    padding-bottom: 0;
    padding-right: 0;
  }
  /*------------------ポポロハスマーケット------------------*/
  .market_area{
    background: url("../drive/drive_img/poporp-pat_sp.png") center / cover no-repeat;
    padding: 40px 20px 20px;
  }

  .market_text{
    padding-top: 6px;
  }

  .market_img_area{
    padding-top: 10px;
  }

  .market_sub_img{
    padding-top: 9px;
  }
 
  
  
  /*------------------バックナンバー部分------------------*/
  .backnumber_area{
    margin-top: 30px;
  }

  .back li{
    width: auto;
  }

  .back li a{
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: center;
    border-radius: 10px;
    padding: 10px 20px 10px 20px;  
  }

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

  
  
  /*------------------フッター------------------*/ 
  .footer-area{
    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;
  }

  
  
 }










