@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;
}



/*------------------共通テキスト部分------------------*/
.s_neme{
  padding-bottom: 12px;
}

.s_copy{
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 10px;  
}

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

.add{
  font-size: 1.5rem;
  font-weight: 400;
}
.add a:hover{
  color: #e60039; /*マウスオーバー時の色*/
  text-decoration: underline;
}

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: 9px;
}
.information>dl:last-child{
  padding-bottom: 0;
}
/*------------------サブメージ部分------------------*/
.sub_img{
  display: flex;
  justify-content: space-between; /*--両端に配置、均等に間隔をあけて--*/
  padding-top: 20px;
}



/*------------------ヒーローイメージ部分------------------*/
.hero_area{
  padding-bottom: 130px;
}

.main_img{
  margin-top: 140px;
  width: 100%;
  height: 0;
  padding-top: calc(718 / 1200 * 100%); /* calc(画像高さ÷画像横幅×100%) */
  background: url("../drive/drive_img/hero_img.jpg") center / cover no-repeat;
}

.header_pattern{ /*--背景パターン--*/
  background-image: url("../drive/drive_img/header_pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
/*------------------ウェーブ部分------------------*/
.wave{
  position:relative;
  height: 200px; /*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
}
.wave canvas{
  position: absolute;
  bottom: 0;
  left:0;
  width: 100%;
}
/*----------------------------------------------------------------------*/
h1.main_title{
  font-size: 4.6rem;
  line-height: 1.7;
  text-align: center;
  color: #1d2088;  
}

h1.main_title span{
  display: block; /*--Safariのバグ対策--*/
  font-weight: 700;
  background: -webkit-linear-gradient(left, #1d2088, #00a0e9);
  background-size:200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textAnime 15s infinite;
}
@keyframes textAnime{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

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

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

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



/*------------------今回のスポット部分------------------*/
.spot_title{
  font-size: 2.2rem;
  font-weight: 600;
  padding: 10px 0 10px;
  color: #1d2088; 
}

.course>li>a{
  width: 300px;
  display: block;
  padding: 15px 0;  
  font-size: 2rem;
  font-weight: 700;
  text-align: center;  
  color: #1d2088;
  background-color: #fff;
  border: solid 1px #1d2088;
  border-radius: 14px;
  margin-bottom: 30px;
  transition: 0.4s;
}

.course>li>a:hover{ 
  color: #fff;   
  background-color: #1d2088;
}
/*------------------ページ内リンク------------------*/
#nobinos{ /*--ノビノス--*/
  margin-top: -430px;
  padding-top: 430px;   
}
#food{ /*--FOOD HUNTER PARK--*/
  margin-top: -430px;
  padding-top: 430px;   
}
#beach{ /*--浜のうたせ--*/
  margin-top: -430px;
  padding-top: 430px;   
}
#marche{ /*--わかやままるしぇ--*/
  margin-top: -430px;
  padding-top: 430px;   
}



/*------------------ノビノス部分------------------*/
.nobinos_area{
  padding-bottom: 130px;
}

.nobinos_main_img{
  width: 100%;
  height: 0;
  padding-top: calc(540 / 1200 * 100%); /* calc(画像高さ÷画像横幅×100%) */
  background: url("../drive/drive_img/nobinos_main.jpg") center / cover no-repeat;
}

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

.nobinos_main_copy{
  position: absolute; /*--子--*/
  top: -37px;
  right: 100px;
}

.nobinos_t_img{
  display: flex;
  justify-content: space-between; /*--両端に配置、均等に間隔をあけて--*/
  padding: 20px 0 10px;
}

.nobinos_r_img>li{
  padding-bottom: 9px;
}
.nobinos_r_img>li:last-child{
  padding-bottom: 0;
}

.nobinos_b_img{
  display: flex;
  justify-content: space-between; /*--両端に配置、均等に間隔をあけて--*/
  padding-bottom: 40px;
}

.nobinos_info{
  padding-bottom: 54px;
  display: flex;
  justify-content: space-between; /*--両端に配置、均等に間隔をあけて--*/   
}

.nobinos_text{
  width: 650px;
}

.nobinos_map{
  padding-bottom: 15px;
}

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

.exp_item_title{
  padding-bottom: 14px;   
}

.exp_lead{
  padding-bottom: 32px;   
}

.exp_item{
  width: 485px;   
}

.exp_item>li{
  padding-bottom: 48px;   
}
.exp_item>li:last-child{
  padding-bottom: 0;   
}

.exp_title{
  padding: 20px 0 10px;   
}

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

.nobinos_pattern{ /*--背景パターン--*/
  background-image: url("../drive/drive_img/nobinos_pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}



/*------------------FOOD HUNTER PARK部分------------------*/
.food_main_img{
  width: 100%;
  height: 0;
  padding-top: calc(540 / 1200 * 100%); /* calc(画像高さ÷画像横幅×100%) */
  background: url("../drive/drive_img/food_main.jpg") center / cover no-repeat;
}

.food_info{
  padding: 40px 0 45px;
  display: flex;
  justify-content: space-between; /*--両端に配置、均等に間隔をあけて--*/   
}

.food_text{
  width: 579px;
}

.food_sub_img>li{
  padding-bottom: 22px;
}
.food_sub_img>li:last-child{
  padding-bottom: 0;
}

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

.food_t_copy{
  position: absolute; /*--子--*/
  top: -35px;
  right: -18px;
}

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

.food_b_copy{
  position: absolute; /*--子--*/
  top: -17px;
  left: -20px;
}

.food_add_area{
  display: flex;
}

.food_map{
  padding-right: 18px;
}

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

.food_add_img{
  position: absolute; /*--子--*/
  bottom: 0;
  right: 0;
}
/*------------------火の食堂部分------------------*/
.dining_area{
  margin-top: 64px;
  background-color: #ebbf7a;
  padding: 30px;    
}

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

.dining_title{
  width: 125px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: #fff; 
  background-color: #cf4220;
  border-radius: 15px;
  padding: 6px 30px;
  margin-bottom: 6px;  
}

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

.dining_img{
  display: flex;
}
/*------------------炎の囲炉裏部分------------------*/
.bbq_area{
  margin-top: 40px;
  background-color: #dce2c1;
  padding: 40px 0;    
}

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

.bbq_title_area{
  display: flex;
  justify-content: center; /*--センター揃え--*/
  padding-bottom: 12px;
}

.bbq_flame{
  width: 125px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: #fff; 
  background-color: #408c3f;
  border-radius: 15px;
  padding: 6px 30px;
}

.bbq_title{
  font-size: 2.8rem;
  font-weight: 500;
  color: #408c3f;
  padding-left: 15px;
}

.bbq_text{
  width: 496px; 
}

.bbq_text>ul{
  display: flex;
  justify-content: space-between; /*--両端に配置、均等に間隔をあけて--*/
  padding-bottom: 10px;
}

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

.bbq_img{
  display: flex;
}



/*------------------浜のうたせ部分------------------*/
.beach_area{
  padding-bottom: 130px;  
}

.beach_main_img{
  width: 100%;
  height: 0;
  padding-top: calc(540 / 1200 * 100%); /* calc(画像高さ÷画像横幅×100%) */
  background: url("../drive/drive_img/beach_main.jpg") center / cover no-repeat;
}

.beach_sub_img{
  padding-bottom: 40px;
}

.beach_info{
  display: flex;
  justify-content: space-between; /*--両端に配置、均等に間隔をあけて--*/ 
  padding-bottom: 45px;
}

.beach_text_area{
  width: 579px;
}
/*------------------うたせ食堂（飲食棟）部分------------------*/
.beach_dining{
  padding-top: 15px; 
  position: relative; /*--親--*/ 
}

.beach_dining_copy{
  position: absolute; /*--子--*/
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.beach_dining>p{
  padding-top: 6px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/   
}
/*------------------新鮮野菜・果物・お土産（物販棟）部分------------------*/
.fishing_sub_img{
  width: 395px;
  padding-top: 7px;
  display: flex;
  justify-content: space-between; /*--両端に配置、均等に間隔をあけて--*/   
}

.fishing_area{
  width: 395px;
  margin-top: 26px;
  background-color: #ebf5ec;
  padding: 16px;
  box-sizing: border-box;
}

.fishing_area>p{
  padding-top: 6px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/   
}

.beach_add_area{
  display: flex;
}

.beach_map{
  padding-right: 18px;
}

.beach_pattern{ /*--背景パターン--*/
  background-image: url("../drive/drive_img/beach_pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}



/*------------------わかやままるしぇ部分------------------*/
.marche_main_img{
  width: 100%;
  height: 0;
  padding-top: calc(540 / 1200 * 100%); /* calc(画像高さ÷画像横幅×100%) */
  background: url("../drive/drive_img/marche_main.jpg") center / cover no-repeat;
}

.marche_info{
  display: flex;
  flex-direction: row-reverse; /*--右から左に--*/
  justify-content: space-between; /*--両端に配置、均等に間隔をあけて--*/ 
  padding: 40px 0 65px;
}

.marche_sub_img>li{
  padding-bottom: 24px;
}
.marche_sub_img>li:last-child{
  padding-bottom: 0;
}

.marche_lunch>p{
  width: 395px;
  padding-top: 6px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/   
}

.marche_text_area{
  width: 579px;
}

.marche_map{
  padding: 45px 0 15px;
}

.marche_pattern{ /*--背景パターン--*/
  background-image: url("../drive/drive_img/marche_pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}



/*------------------バックナンバー部分------------------*/
.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; /*--両端に配置、均等に間隔をあけて--*/  
}

.back>li{
  width: 325px;
}

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

.back>li>a:hover{
  color: #fff;
  background: #e60069; /*マウスオーバー時の背景色*/
  border: solid 1px #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: 65px;
  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:599px){
  
  .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;
  }
  
  
  
  /*------------------共通テキスト部分------------------*/
  .s_neme{
    padding-bottom: 10px;
  }

  .s_copy{
    font-size: 1.9rem;
  }

  .text{
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .add{
    font-size: 1.3rem;
  }

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

  .info>li{
    padding-bottom: 5px;
  }
  
  .sp_info{
    padding-top: 10px;
  }
  
  .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%;   
  } 
  /*------------------サブメージ部分------------------*/
  .sub_img{
    padding-top: 10px;
  }



  /*------------------ヒーローイメージ部分------------------*/
  .hero_area{
    padding-bottom: 30px;
  }

  .main_img{
    margin-top: 170px;
    width: 100%;
    height: 0;
    padding-top: calc(1040 / 768 * 100%); /* calc(画像高さ÷画像横幅×100%) */
    background: url("../drive/drive_img/sp_hero_img.jpg") center / cover no-repeat;
  }

  .header_pattern{ /*--背景パターン--*/
    background-image: url("../drive/drive_img/sp_header_pattern.png");
  }

  h1.main_title{
    font-size: 2.3rem;
    line-height: 1.6;
    margin-top: 20px;
  }

  .main_title_area{
    display: block; /*--解除--*/
    margin-top: 6px;
  }

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

  .low_text{
    width: auto;
    font-size: 1.3rem;
    padding-left: 1.3rem; /*--2行目以降を1文字下--*/
    text-indent: -1.3rem; /*--2行目以降を1文字下--*/
  }



  /*------------------今回のスポット部分------------------*/
  .spot_title{
    font-size: 2rem;
    padding: 25px 0 12px;
    text-align: center;
  }

  .course>li>a{
    width: auto;
    margin-bottom: 20px;
  }
  /*------------------ページ内リンク------------------*/
  #nobinos{ /*--ノビノス--*/
    margin-top: -630px;
    padding-top: 630px;   
  }
  #food{ /*--FOOD HUNTER PARK--*/
    margin-top: -360px;
    padding-top: 360px;   
  }
  #beach{ /*--浜のうたせ--*/
    margin-top: -500px;
    padding-top: 500px;   
  }
  #marche{ /*--わかやままるしぇ--*/
    margin-top: -100px;
    padding-top: 100px;   
  }



  /*------------------ノビノス部分------------------*/
  .nobinos_area{
    padding-bottom: 50px;
  }

  .nobinos_main_img{
    width: 100%;
    height: 0;
    padding-top: calc(450 / 768 * 100%); /* calc(画像高さ÷画像横幅×100%) */
    background: url("../drive/drive_img/sp_nobinos_main.jpg") center / cover no-repeat;
  }

  .nobinos_info{
    padding-bottom: 30px;
    display: block; /*--解除--*/
  }

  .nobinos_text{
    width: auto;
    padding-top: 17px; 
  }

  .sp_nobinos_map{
    padding-top: 21px;
  }

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

  .exp_lead{
    padding-bottom: 13px;   
  }

  .exp_item{
    width: auto;   
  }

  .exp_item>li{
    padding-bottom: 20px;   
  }

  .exp_title{
    padding: 10px 0 10px;   
  }

  .exp_text{
    font-size: 1.3rem;
  }

  .sp_nobinos_sub_img>li{
    width: 50%;
  }  
  
  .sp_nobinos_sub_img{
    display: flex;
    flex-wrap: wrap; /*--上から下--*/
    justify-content: space-between; /*--両端に配置、均等に間隔をあけて--*/
    padding-top: 10px;
  }  
  
  .sp_library{
    padding-top: 30px;
  }

  .nobinos_pattern{ /*--背景パターン--*/
    background-image: url("../drive/drive_img/sp_nobinos_pattern.png");
  }



  /*------------------FOOD HUNTER PARK部分------------------*/
  .food_main_img{
    width: 100%;
    height: 0;
    padding-top: calc(450 / 768 * 100%); /* calc(画像高さ÷画像横幅×100%) */
    background: url("../drive/drive_img/sp_food_main.jpg") center / cover no-repeat;
  }

  .food_info{
    padding: 17px 0 21px;
    display: block; /*--解除--*/
  }

  .food_text{
    width: auto;
  }

  .food_sub_img{
    padding-top: 22px;
  }
  
  .food_sub_img>li{
    padding-bottom: 20px;
  }

  .food_t_copy{
    width: 30vw;
    top: -27px;
    right: -8px;
  }

  .food_b_copy{
    width: 38vw;
    top: -15px;
    left: -10px;
  }

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

  .food_map{
    padding-right: 0;
  }

  .food_add_img{
    position: absolute; /*--子--*/
    bottom: -50px;
    right: 0;
    width: 32vw;
  }
  /*------------------火の食堂部分------------------*/
  .dining_area{
    margin-top: 30px;
    padding: 20px; 
    margin: 0 calc(50% - 50vw);
	  width: 100vw;
    box-sizing: border-box;
  }

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

  .dining_title{
    font-size: 1.4rem; 
  }

  .dining_text{
    width: auto;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  /*------------------炎の囲炉裏部分------------------*/
  .bbq_area{
    margin-top: 0;
    padding: 20px 0;    
  }

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

  .bbq_title_area{
    display: block; /*--解除--*/
    padding-bottom: 12px;
    text-align: center;
  }

  .bbq_flame{
    font-size: 1.4rem;
    margin: 0 auto 7px;
  }

  .bbq_title{
    font-size: 2.6rem;
    padding-left: 0;
  }

  .bbq_text{
    width: auto; 
  }

  .bbq_text>p{
    font-size: 1.3rem;
    line-height: 1.6;
  }



  /*------------------浜のうたせ部分------------------*/
  .beach_area{
    padding-bottom: 50px;  
  }

  .beach_main_img{
    width: 100%;
    height: 0;
    padding-top: calc(451 / 768 * 100%); /* calc(画像高さ÷画像横幅×100%) */
    background: url("../drive/drive_img/sp_beach_main.jpg") center / cover no-repeat;
  }

  .beach_sub_img{
    padding-bottom: 17px;
  }

  .beach_info{
    display: block; /*--解除--*/
    padding-bottom: 21px;
  }

  .beach_text_area{
    width: auto;
  }
  /*------------------うたせ食堂（飲食棟）部分------------------*/
  .beach_dining{
    padding-top: 25px;
    padding-bottom: 20px;
  }

  .beach_dining_copy{
    top: 0;
    width: 40vw;
  }

  .beach_dining>p{
    padding-top: 6px;
    font-size: 1.3rem;
  }
  /*------------------新鮮野菜・果物・お土産（物販棟）部分------------------*/
  .fishing_sub_img{
    width: auto;
    padding-top: 0;
  }

  .fishing_area{
    width: auto;
    margin-top: 0;
    padding: 15px;
  }

  .fishing_area>p{
    font-size: 1.3rem;
  }

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

  .beach_map{
    padding-right: 0;
  }

  .beach_pattern{ /*--背景パターン--*/
    background-image: url("../drive/drive_img/sp_beach_pattern.png");
  }



  /*------------------わかやままるしぇ部分------------------*/
  .marche_main_img{
    width: 100%;
    height: 0;
    padding-top: calc(451 / 768 * 100%); /* calc(画像高さ÷画像横幅×100%) */
    background: url("../drive/drive_img/sp_marche_main.jpg") center / cover no-repeat;
  }

  .marche_info{
    display: block; /*--解除--*/
    padding: 0 0 50px;
  }

  .marche_sub_img>li{
    padding-bottom: 0;
  }

  .marche_lunch>p{
    width: auto;
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .marche_text_area{
    width: auto;
    padding-top: 17px;
  }

  .marche_map{
    padding: 21px 0 10px;
  }

  .marche_pattern{ /*--背景パターン--*/
    background-image: url("../drive/drive_img/sp_marche_pattern.png");
  }



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

  .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{
    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;
  }

  
  
 }










