@charset "utf-8";

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../font/NotoSansJP-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Serif JP Custom';
  src: url('../font/NotoSerifJP-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/*--------------------------------------------------------------
  Common
--------------------------------------------------------------*/

html,body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  width: 1920px;
  height:1080px;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  touch-action: none;
  scrollbar-track-color:#000;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

  @media only screen and (max-width: 768px) {
    html,body {
      font-size: 12px;}
  }

body{
  position: relative;
  z-index: 1;
  transform: none;
  overflow: visible;
  /* border: 1px solid #000; */
  display: flex;
  flex-wrap: wrap;
}
body::-webkit-scrollbar{
  display:none;
}
p{margin: 0;}



article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
      margin: 20px 0;
}
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
a{
  color: #2d2d2d;
  text-decoration: none;
}
ol,ul,dl {
  margin-top: 0;
  margin-bottom: 1rem;
  list-style: none;
}

ol ol,ul ul,ol ul,ul ol {
  margin-bottom: 0;
}
blockquote {
  margin: 0 0 1rem;
}
b,
strong {
  font-weight: bold;
}

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

.siteFadeIn {
  position: fixed;
  z-index: 9999999999;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  display: block;
  background-color: #fff;
  pointer-events: none;
  filter: opacity(1);
}
.siteFadeIn.opc {
  filter: opacity(0);
  transition: filter 1s ease-in;
}


.mt_20{margin-top: 20px;}
.mt_30{margin-top: 30px;}
.mt_40{margin-top: 40px;}
.mt_60{margin-top: 60px;}
.mb_20{margin-bottom: 20px;}
.mb_30{margin-bottom: 30px;}
.mb_40{margin-bottom: 40px;}
.mb_60{margin-bottom: 60px;}

.txt_right{text-align: right;}
.txt_center{text-align: center;}


/*--------------------------------------------------------------
  メインコンテンツ
--------------------------------------------------------------*/
main{
  position: relative;
  width: calc(1920px - 420px);
}
main .main_content{
  height: 950px;
  background-color: #FFF8F0;
}
main .main_title{
  position: absolute;
  background-color: #CADC8C;
  padding: 18px 36px 26px;
  border-radius: 0 0 15px 0;
  z-index: 5;
}
main .main_title img{
  width: 228px;
  height: 123px;
  pointer-events: none;
}
main .main_title.en{
  padding: 18px 16px 26px;
}
main .main_title.en img{
  width: 262px;
  height: auto;
}
main .main_head_txt {
  display: flex;
  align-items: center;
  padding-left: 315px;
  height: 70px;
  background-color: #FDEDD9;
  pointer-events: none;
}
main .main_head_txt.en img{
  width: auto;
  height: 26px;
}
main .main_head_txt img{
  height: 32px;
}
main .main_sub_txt{
  display: flex;
  align-items: center;
  font-size: 30px;
  font-weight: 500;
  height: 70px;
  letter-spacing: 2px;
  background-color: #FDEDD9;
}

/* トップ 画像部分 */
.main_top_area{
  display: flex;
  flex-wrap: wrap;
}
.main_top_area .mainvisual{
  position: relative;
  width: 781px;
  pointer-events: none;
}
.mainvisual .txt{
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* トップ ボタン側 */
.mainvisual_btn_area{
  width: calc(100% - 781px);
}
.main_btn_big {
  position: relative;
  display: block;
  border: 2px solid #CADC8C;
  border-radius: 12px;
  overflow: hidden;
  height: 454px;
  margin: 15px 15px 0;
  background: url("../img/main-map.jpg") center / cover no-repeat;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
  transition: 0.15s ease;
}
.main_btn_big:hover {
  transform: translateY(3px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.main_btn_big::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #ffffff;
  border-radius: 10px;
  pointer-events: none;
  z-index: 10;
}
.main_btn_big::before {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 35px;
  z-index: 10;
  background: url("../img/icon-triangle.svg") center / cover no-repeat;
}

.overlay_black {
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.overlay_green {
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
  rgba(6, 63, 0, 0) 0%,
  rgba(6, 63, 0, 0.5) 50%,
  rgba(6, 63, 0, 1) 100%
  );
  z-index: 2;
}
.main_btn_big .btn_content {
  position: relative;
  z-index: 5;
  color: #fff;
}
.main_btn_big .btn_content .mba_txt{
  position: absolute;
  top: 35px;
  left: 35px;
}
.main_btn_big .btn_content .mba_img{
  position: absolute;
  top: 24px;
  right: 50px;
  pointer-events: none;
}
.main_btn_big .btn_content .mba_img img{
  width: 432px;
  height: auto;
}
.main_btn_big .txt_01{
  display: block;
  pointer-events: none;
}
.main_btn_big.en .txt_01 img{
  width: 400px;
  height: auto;
}
.main_btn_big .txt_02{
  display: block;
  font-family: 'Noto Serif JP Custom', serif;
  font-size: 20px;
  line-height: 20px;
  margin-top: 10px;
}
/* メインボタン下 */
.main_btn_area{
  display: flex;
  flex-wrap: wrap;
  margin: 15px 15px 0;
}
.main_btn_s {
  width: calc(50% - 10px);
  position: relative;
  display: block;
  border: 2px solid #A87FAD;
  border-radius: 12px;
  overflow: hidden;
  height: 428px;
  background: url("../img/main-powerspot.jpg") center / cover no-repeat;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
  transition: 0.15s ease;
}
.main_btn_s.mbs_blue {
  border: 2px solid #71ADAD;
  background: url("../img/main-hiking.jpg") center / cover no-repeat;
}
.main_btn_s:hover {
  transform: translateY(3px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.main_btn_s::before {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 35px;
  z-index: 10;
  background: url("../img/icon-triangle.svg") center / cover no-repeat;
}
.main_btn_s::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #ffffff;
  border-radius: 10px;
  pointer-events: none;
  z-index: 10;
}
.overlay_purple {
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
  rgba(168, 127, 173, 0) 0%,
   rgba(168, 127, 173, 0.3) 60%,
  rgba(168, 127, 173, 0.9) 80%,
  rgb(168, 127, 173) 100%
  );
  z-index: 2;
}
.overlay_blue {
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
  rgba(113, 173, 173, 0) 0%,
  rgba(113, 173, 173, 0.3) 60%,
  rgba(113, 173, 173, 0.9) 80%,
  rgb(113, 173, 173) 100%
  );
  z-index: 2;
}
.main_btn_s .mba_txt{
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 15px;
  bottom: 15px;
  pointer-events: none;
  z-index: 10;
}
.main_btn_s .mba_txt .txt_01 img{
  width: 223px;
  height: auto;
}
.main_btn_s.en .mba_txt .txt_03 img{
  width: 223px;
  height: auto;
}
.main_btn_s .mba_txt .txt_02{
  display: block;
  font-family: 'Noto Serif JP Custom', serif;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  margin-bottom: 10px;
}
.main_btn_s.mba_l{
  margin-right: 10px;
}

.main_hojyo{
  font-size: 12px;
  line-height: 1;
  text-align: right;
  margin-right: 15px;
  margin-top: 10px;
}
/*--------------------------------------------------------------
  待機画面 
--------------------------------------------------------------*/
main.movie{
  background-color: #FDEDD9;
  width: 1920px;
  height: 1080px;
}
.movie_content{
  width: 1920px;
  height: 1080px;
}
.movie_area{
  width: 1920px;
  height: 1080px;
}
a.movie_click{
  display: block;
  margin: 0;
  padding: 0;
  width: 1920px;
  height: 1080px;
}
.videoPlayer{
  width: 1920px;
  height: 1080px;
}
.movie_bottom{
  position: absolute;
  left: 30px;
  bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  z-index: 9999;
}
.movie_bottom .box_flex{
  display: flex;
  flex-direction: column;
}
.movie_bottom .box_flex img{
  width: 245px;
  height: auto;
}
.movie_bottom .box_txt2{
  margin-bottom: 20px;
}
.movie_bottom .box_txt2 img{
  width: 400px;
}

.movie_area video{
  width: 1920px;
  height: 1080px;
}



#soundBtn{
  position:absolute;
  bottom:20px;
  right:20px;
  z-index:1000;
  padding:10px 20px;
  font-size:14px;
  cursor:pointer;
  height: 50px;
  width: 200px;
}

.slideShow{
  position:relative;
  width:100%;
  height:1080px;
  overflow:hidden;
}
.slideStage{
  position:relative;
  width:100%;
  height:100%;
}
.slideImg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity 1s ease;
}
.slideImg.active{
  opacity:1;
}

/*--------------------------------------------------------------
  言語選択 
--------------------------------------------------------------*/
main.lang_select{
  background-color: #FDEDD9;
  width: 1920px;
}
main.lang_select .container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(1080px - 180px);
}
main.lang_select .container h1{
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  letter-spacing: 5px;
}
main.lang_select .container .sub{
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  margin-top: 30px;
}
main.lang_select .flex_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
main.lang_select a.lang_en,
main.lang_select a.lang_jp{
  position: relative;
  display: inline-block;
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  color: #fff;
  margin:0 30px;
  border-radius: 10px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.4);
  transition: 0.15s ease;
}
main.lang_select a.lang_en:hover,
main.lang_select a.lang_jp:hover{
  opacity: 0.9;
  transform: translateY(3px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
main.lang_select a.lang_en{
  background-color: #9DB742;
}
main.lang_select a.lang_jp{
  background-color: #DFAE57;
}
main.lang_select a.lang_en span,
main.lang_select a.lang_jp span{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 530px;
  height: 350px;
  border: 3px solid #fff;
  border-radius: 8px;
  margin: 5px;
}
/* main.lang_select a::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #ffffff;
    border-radius: 10px;
    pointer-events: none;
    z-index: 10;
} */

/*--------------------------------------------------------------
  iframe 
--------------------------------------------------------------*/

#contentFrame{
  width: 1500px;
  height: 1020px;
  border:none;
  display: block;
  overflow:hidden;
}
.iframe_flex{
  display: flex;
  flex-wrap: wrap;
}

/*--------------------------------------------------------------
  メニュー
--------------------------------------------------------------*/
nav{
  position: relative;
  width: 420px;
  height: 1080px;
  background-color: #FDEDD9;
}
nav .wrapper{  padding: 15px 20px 0;}
nav .deco{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  background-image: url(../img/nav-deco01.svg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

nav .head_area{
  display: flex;
  flex-wrap: wrap;
}
nav .head_area .head_L{  width: 50%;}
nav .head_area .head_R{  width: 50%;}
nav .head_L_img{
  display: block;
  text-align: center;
}
nav .head_L_img img{

}
nav .head_L_txt{
  text-align: center;
  font-size: 12px;
}
nav .head_L_txt span{
  font-size: 16px;
  font-weight: bold;
}
nav .head_area .head_txt_en{
  text-align: center;
  font-size: 12px;
}
nav .head_area .head_txt_en span{
  font-size: 16px;
  font-weight: bold;
}
nav .head_R{
  position: relative;
}
nav .head_R .head_R_txt{
  position: absolute;
  top: 44px;
  left: 24px;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  text-align: center;
}
nav .head_R .head_R_txt.en{
  top: 48px;
  left: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
}
nav .head_R .head_R_img{
  margin-top: 10px;
}

nav .nav_txt{
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 2px;
}
nav .nav_txt.en{
  font-size: 30px;
  line-height: 1;
  margin-top: 5px;
}
nav a.nav_btn{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 26px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 2px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
  transition: 0.15s ease;
}
nav a.nav_btn.sub_title_first{
  margin-top: 10px;
}

/* 楽しみ方 ボタン */
nav a.nav_btn.btn_hiking{
  color: #fff;
  background-color: #71ADAD;
}
nav a.nav_btn.btn_jinjya{
  color: #fff;
  background-color: #A87FAD;
}
nav a.nav_btn.btn_orange{
  color: #fff;
  background-color: #DFAE57;
}
/* ボタン 動作 */
nav a.nav_btn:hover {
  opacity: 0.9;
  transform: translateY(3px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
/* 文字 */
nav a.nav_btn .txt_l{  font-size: 30px;}
nav a.nav_btn .txt_s{  font-size: 24px;}
nav a.nav_btn.en .txt_l{  font-size: 26px;}
nav a.nav_btn.en .txt_s{  font-size: 20px; margin-right: 10px;}
nav a.nav_btn.en{
  font-size: 22px;
  letter-spacing: 0;
  line-height: 22px;
}

nav a.nav_btn span.icon{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  width: 55px;
  height: 55px;
  background-color: #fff;
  margin-right: 15px;
}
nav a.nav_btn span.icon.icon_about{
  background-color: #DFAE57;
}
nav a.nav_btn span.icon:before{
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
nav a.nav_btn span.icon_home:before{
  background-image: url(../img/home.svg);
}
nav a.nav_btn span.icon_about:before{
  background-image: url(../img/about.svg);
}
nav a.nav_btn span.icon_hiking:before{
  width: 30px;
  height: 35px;
  background-image: url(../img/hiking.svg);
}
nav a.nav_btn span.icon_jinjya:before{
  width: 40px;
  height: 45px;
  background-image: url(../img/jinjya.svg);
}
nav a.nav_btn span.icon_see:before{
  width: 40px;
  height: 45px;
  background-image: url(../img/see.svg);
}
nav a.nav_btn span.icon_eat:before{
  width: 40px;
  height: 45px;
  background-image: url(../img/eat.svg);
}
nav a.nav_btn span.icon_asobu:before{
  width: 45px;
  height: 45px;
  background-image: url(../img/asobu.svg);
}
nav a.nav_btn span.icon_tomaru:before{
  width: 37px;
  height: 31px;
  background-image: url(../img/tomaru.svg);
}

nav a.nav_btn_big{
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 2px;
  background-color: #9DB742;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
  transition: 0.15s ease;
}
nav a.nav_btn_big.en{
    letter-spacing: unset;
    font-size: 24px;
    line-height: 26px;
}
nav a.nav_btn_big:hover {
  transform: translateY(3px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
nav a.nav_btn_big .txt_l{  font-size: 30px;}
nav a.nav_btn_big .txt_s{  font-size: 24px;}
nav a.nav_btn_big span.icon{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 76px;
  margin-right: 15px;
  background-color: #fff;
}
nav a.nav_btn_big span.icon.icon_map:before{
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../img/map.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

nav .sub_title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  gap: 20px;
  margin-top: 15px;
  letter-spacing: 2px;
}
nav .sub_title.en{    letter-spacing: unset;}
nav .sub_title::before,
nav .sub_title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #CADC8C;
}

nav .language_area{
  position: relative;
  z-index: 2;
  padding: 20px 15px 10px;
  display: flex;
  flex-wrap: wrap;
}
nav .language_area .lang_btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 20px);
  height: 40px;
  border-radius: 5px;
  background-color: #fff;
  margin: 0 10px;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
  transition: 0.15s ease;
}
nav .language_area .lang_btn.active{
  color: #fff;
  background-color: #9DB742;
}
nav .language_area .lang_btn:hover {
  transform: translateY(3px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
/*--------------------------------------------------------------
  お知らせ
--------------------------------------------------------------*/
.news_area{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 59px;
  border-top: 1px solid #E6E6E6;
}
.news_area.modal-active{
  border-top: none;
}
#newsOverlay{
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 10;
}
.news_area .new_title{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #DFAE57;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  height: 60px;
  padding: 0 15px;
}
.news_area .new_title span.icon_news{
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-image: url(../img/news.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.news_area .news_txt{
  margin: 0 15px;
  font-size: 18px;
  font-weight: 500;
}

/*--------------------------------------------------------------
  サブ 共通
--------------------------------------------------------------*/
.backhome{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  height: 70px;
  width: 210px;
  background-color: #9DB742;
  transition: 0.3s;
}
.backhome:before{
  content: "";
  display: block;
  margin-right: 15px;
  width: 30px;
  height: 32px;
  background: url("../img/home-w.svg") center / cover no-repeat;
}
.backhome:hover{  opacity: 0.7;}
.sub_head{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
  color: #301505;
  height: 70px;
  padding-left: 210px;
  background-color: #FDEDD9;
}
.sub_head.en{
  letter-spacing: 1px;
}
.sub_head:before{
  content: "";
  width: 20px;
  height: 70px;
  margin-right: 15px;
  background-color: #CADC8C;
}

.back a{
  position: absolute;
  bottom: 75px;
  width: 95px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #3E487D;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  z-index: 10;
}
.back a img{
  pointer-events: none;
}

/*--------------------------------------------------------------
  神川町とは
--------------------------------------------------------------*/
.about_container{
  height: 1019px;
  background: url("../img/sub-about-bg.jpg") center / cover no-repeat;
}
.about_container .wrapper{
  position: relative;
  z-index: 2;
  height: 1019px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about_container .overlay_white {
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1019px;
  background: rgba(255, 255, 255, 0.35);
  z-index: 1;
}
.sub_about_area{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
}
.sub_about_area .box{
  width: 50%;
}
.sub_about_area .box_left{
  width: 45%;
}
.sub_about_area .box_right{
  width: 55%;
}
.about_container h1{
  font-size: 50px;
  font-weight: 500;
}
.about_container h1 span{
  font-size: 40px;
}
.about_container .sub_about_img{
  width: 714px;
  height: auto;
  margin: 0 15px 0 30px;
}
.about_container.en .sub_about_img{
  width: 657px;
}

.about_container .about_txtbox{
  width: 580px;
  height: 486px;
  margin: 0 30px 0 15px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.176);
}
.about_container.en .about_txtbox{
  width: 680px;
  height: 575px;
  margin: 0 30px 0 15px;
}

.about_container .about_txtbox_warp{
  padding: 40px;
}
.about_container .about_txtbox_warp h2{
  font-size: 38px;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: 2px;
}
.about_container.en .about_txtbox_warp h2{
  font-size: 28px;
  line-height: 56px;
  letter-spacing: unset;
}
.about_container .about_txtbox_warp p{
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 1.5px;
  margin-top: 20px;
}
.about_container.en .about_txtbox_warp p{
  letter-spacing: unset;
}
.about_container .about_txtbox_warp a {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 2px;
    width: 380px;
    background-color: #9DB742;
    color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
    transition: 0.15s ease;
}
.about_container .about_txtbox_warp a:hover{
    transform: translateY(3px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.about_container .about_txtbox_warp a span.icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 85px;
    height: 85px;
    margin-right: 15px;
    background-color: #fff;
}
.about_container .about_txtbox_warp a span.icon:before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-image: url(../img/map.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.about_container .about_txtbox_warp a .txt_l {
    font-size: 30px;
}
.about_container.en .about_txtbox_warp a .txt_l {
    letter-spacing: unset;
    font-size: 22px;
    line-height: 26px;
}
.about_masukotto{
  position: absolute;
  top: 62%;
  right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 4px solid #DFAE57;
  background-color: #fff;
  border-radius: 50%;
  width: 258px;
  height: 258px;
  font-size: 16px;
  line-height: 20px;
}
.about_container.en .about_masukotto{
  top: 65%;
  right: 20px;
}
.about_masukotto img{
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
  見る・食べる・遊ぶ
--------------------------------------------------------------*/
.filter_buttons{
  padding-top: 35px;
  margin-left: 15px;
  margin-right: 15px;
}
.filter_buttons .wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FDEDD9;
  border-radius: 5px;
  height: 80px;
}
.filter_buttons.en .wrapper{
  height: 90px;
}
.filter_buttons button{
  border: none;
  background-color: #fff;
  height: 46px;
  font-size: 22px;
  font-weight: 500;
  padding: 0 35px;
  margin: 0 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
  transition: 0.15s ease;
}
.filter_buttons.en button{
  height: 60px;
  line-height: 24px;
}
.filter_buttons button:hover {
  transform: translateY(3px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.filter_buttons button.active{
  background-color: #DFAE57;
}


.card-list{
  display: flex;
  flex-wrap: wrap;
  margin: 0 15px;
}

.card {
  margin: 30px 15px 0;
  opacity: 0;
  transform: translateY(24px) scale(.94);
  filter: blur(6px);
  animation: softFadeIn .6s cubic-bezier(.22,1,.36,1) forwards;
  will-change: transform, opacity, filter;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
  transition: 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}


.card .area_name{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  height: 50px;
}
/* カード画像 */
.card .card_img {
  height: 150px;
  overflow: hidden;
}
.card .card_img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.card:hover .card_img img {
  transform: scale(1.08);
}
.card:hover{
  background-color: #DFAE57;
}
/* カード動的部分 */
.card.hide {  display: none;}
@keyframes softFadeIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(.94);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
/* モーダル */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  /* inset: 0; */
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
  z-index: 9999;
  width: 1500px;
  /* height: 100%; */
  height: 1080px;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  position: relative;
  background: #fff;
  width: 646px;
  /* ふわっと */
  transform: translateY(24px) scale(.94);
  opacity: 0;
  transition: .45s cubic-bezier(.22,1,.36,1);
}
.modal-box:before{
  content: "";
  position: absolute;
  top: 0;
  right: -60px;
  display: block;
  width: 60px;
  height: 60px;
  background: url("../img/icon-close.svg") center / cover no-repeat;
}
.modal-box:after{
  content: "";
  position: absolute;
  bottom: 0;
  left: -60px;
  display: block;
  width: 60px;
  height: 60px;
  background: url("../img/icon-close.svg") center / cover no-repeat;
}
/* クリック用の透明ボタン */
.modal-close-area {
  position: absolute;
  width: 60px;
  height: 60px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.modal-close-top {
  top: 0;
  right: -60px;
}
.modal-close-bottom {
  bottom: 0;
  left: -60px;
}

.modal-overlay.is-open .modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-content .area_photo{
  text-align: center;
  height: 380px;
}
.modal-content .area_label{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  height: 36px;
  background-color: #DFAE57;
}
.modal-content .area_content{
  padding: 30px;
  background-color: #fff;
}
.modal-content .area_content .area_name{
  font-size: 26px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 2px;
}
.card_en .modal-content .area_content .area_name{
    letter-spacing: unset;
}
.modal-content .area_content .area_name span{
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-left: 10px;
  letter-spacing: 1.5px;
}
.modal-content .area_content .area_txt{
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  margin-top: 20px;
}
.modal-content .area_content .area_dl{
  margin-top: 15px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  width: 100%;
  border-collapse: collapse;
}
.modal-content .area_content .area_dl th,
.modal-content .area_content .area_dl td{
  padding: 4px 0;
}
.modal-content .area_content .area_dl th{
  vertical-align: top;
  text-align: left;
  width: 135px;
  line-height: 20px;
}
.modal-content .qr_area{
  display: flex;
  flex-wrap: wrap;
}
.modal-content .box_map,
.modal-content .box_hp{
  width: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 23px;
  line-height: 25px;
  font-weight: 400;
  background-color: #CADC8C;
  height: 117px;
}
.modal-content .box_hp{
    background-color: #FDEDD9;
}
.modal-content .box_map img,
.modal-content .box_hp img{
  width: 95px;
  height: auto;
}


.modal-content .scroll-container {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 646px;
    height: 400px;
    padding: 20px 28px 20px 20px;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 6px;
}


/*--------------------------------------------------------------
  ハイキングコース
--------------------------------------------------------------*/
.hiking_area{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.hiking_wrapper{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hiking_btn {
  width: 272px;
  margin: 0 10px;
  position: relative;
  display: block;
  border: 2px solid #71ADAD;
  border-radius: 12px;
  overflow: hidden;
  height: 632px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
  transition: 0.15s ease;
}
.hiking_btn.course_01 {
  background: url("../img/hiking/hiking-course01-img01.jpg") center / cover no-repeat;
}
.hiking_btn.course_02 {
  background: url("../img/hiking/hiking-course02-img01.jpg") center / cover no-repeat;
}
.hiking_btn.course_03 {
  background: url("../img/hiking/hiking-course03-img01.jpg") center / cover no-repeat;
}
.hiking_btn.course_04 {
  background: url("../img/hiking/hiking-course04-img01.jpg") center / cover no-repeat;
}
.hiking_btn.course_05 {
  background: url("../img/hiking/hiking-course05-img01.jpg") center / cover no-repeat;
}

.hiking_btn:hover {
  transform: translateY(3px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.hiking_btn::before {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 35px;
  z-index: 10;
  background: url("../img/icon-triangle.svg") center / cover no-repeat;
}
.hiking_btn::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #ffffff;
  border-radius: 10px;
  pointer-events: none;
  z-index: 10;
}
.hiking_overlay_blue {
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
  rgba(113, 173, 173, 0) 0%,
    rgba(113, 173, 173, 0) 50%,
  rgba(113, 173, 173, 0.6) 65%,
  rgba(113, 173, 173, 0.7) 80%,
  rgb(113, 173, 173) 100%
  );
  z-index: 2;
}

a.hiking_btn .btn_content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  bottom: 30px;
  z-index: 10;
  margin-bottom: 30px;
  height: 80px;
}
a.hiking_btn .btn_content .course_name{
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.hiking_area_en a.hiking_btn .btn_content {
    height: 200px;
        bottom: 0;
}
.hiking_area_en a.hiking_btn .btn_content .course_name{
  font-size: 28px;
  line-height: 36px;
  letter-spacing: unset;
  height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
a.hiking_btn .btn_content .course_nanido{
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
}
a.hiking_btn .btn_content .course_icon span{
  display: inline-block;
  margin: 5px 2px 0;
  width: 19px;
  height: 21px;
  background: url("../img/hiking/icon-apple-w.svg") center / cover no-repeat;
}
a.hiking_btn .btn_content .course_icon span.active{
  background: url("../img/hiking/icon-apple.svg") center / cover no-repeat;
}

/*--------------------------------------------------------------
  ハイキングコース 詳細
--------------------------------------------------------------*/
main .main_content.hikingDl_area{
  background-color: #fff;
}

.course_wrapper{
  display: flex;
  flex-wrap: wrap;
  height: 850px;
}
.course_wrapper .boxImg_area{
  width: 805px;
  background-color: #FFF8F0;
}
.course_wrapper .boxContainer_area{
  width: calc(100% - 865px);
  margin: 30px 30px 0;
}
.boxImg_area .main_photo{
  height: 668px;
}
.boxImg_area .main_txt{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  height: 40px;
  background-color: #DFAE57;
}
.boxImg_area .thumbnail{
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
}
.boxImg_area .thumbnail img{
  border: 1px solid #E3E3E3;
  transition: 0.3s;
}
.boxImg_area .thumbnail img:hover{
  opacity: 0.7;
}
.boxImg_area .guide_txt{
  margin-left: 30px;
}

.boxContainer_area h1{
  font-size: 46px;
  font-weight: 500;
  letter-spacing: 5px;
}
.hikingDl_area_en .boxContainer_area h1{
  font-size: 40px;
  line-height: 48px;
  letter-spacing: unset;
}
.boxContainer_area h1 span{
  background: linear-gradient(transparent 60%, #71adad82 60%);
}
.boxContainer_area p{
  margin-top: 20px;
  font-size: 20px;
  line-height: 34px;
}
.hikingDl_area_en .boxContainer_area p{
  font-size: 18px;
  line-height: 28px;
}

.course_dl_area{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 25px;
}
.hikingDl_area_en .course_dl_area{
  position: relative;
  margin-top: 20px;
}
.course_dl_area .course_dl_box{
  width: 50%;
  font-size: 20px;
  line-height: 28px;
}

.hikingDl_area_en .course_dl_area .course_dl_txt{
  font-size: 18px;
  line-height: 30px;
}
.course_dl_area .course_dl_txt span.icon{
  display: inline-block;
  margin: 5px 2px 0;
  width: 19px;
  height: 21px;
  background: url("../img/hiking/icon-apple-g.svg") center / cover no-repeat;
}
.course_dl_area .course_dl_txt span.icon.active{
  background: url("../img/hiking/icon-apple.svg") center / cover no-repeat;
}
.course_hp_box{
  padding: 5px 0;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 20px;
  line-height: 20px;
  background-color: #FDEDD9;
}
.hikingDl_area_en .course_hp_box{
  position: absolute;
  top: -10px;
  right: 0;
}
.course_hp_box .course_hp{
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.course_hp_box .course_hp .qr_img{
  background-color: #fff;
  padding: 5px;
}
.hikingDl_area_en .course_hp_box .course_hp{
  padding: 5px 0;
}
.hikingDl_area_en .course_hp_box .course_hp .qr_img{
  padding: 0;
}
.course_hp_box .course_hp .qr_img img{
  width: 82px;
  height: auto;
}
.hikingDl_area_en .course_hp_box .course_hp .qr_img img{
  width: 120px;
}
.course_detail_name{
  font-size: 26px;
  font-weight: 500;
  margin-top: 15px;
}



.course-list {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  display: flex;
  align-items: center;
}
.course-list .spot {
  writing-mode: vertical-rl; /* ★縦書き */
  text-orientation: upright;
  padding-top: 15px;
  width: 60px;
  height: 250px;
  display: flex;
  align-items: center;
  background: #F5F5F5;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.5px;
}

.course-list .spot.spot_course5{
  width: 50px;
  height: 300px;
}
.course-list .spot.long{
    height: 455px;
}
/* 矢印 */
.course-list .arrow{
  display: flex;
  justify-content: center;
  width: 30px;
}
.course-list .arrow img {
  width: 20px;
  height: auto;
}

.course-list_en {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 0;
}

.course-list_en .spot {
  counter-increment: step;
  position: relative;
  padding: 4px 15px 4px 48px;
  margin-bottom: 10px;
  background-color: #F5F5F5;
  font-weight: 500;
  font-size: 20px;
}

.course-list_en .spot::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #DFAE57;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.other_course{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #D5E6E6;
  height: 100px;
}
.other_course .title{
  color: #71ADAD;
  font-size: 24px;
  line-height: 1;
  margin-left: 130px;
  width: calc(1500px - 1310px);
  height: 100px;
  display: flex;
  align-items: center;
}
.other_course.other_course_en .title{
  font-size: 26px;
  line-height: 1;

  text-align: center;
}
.other_course_area{
  display: flex;
  flex-wrap: wrap;
  margin: 0 30px;
}
/* ハイキング その他 */
.hiking_banner {
  width: 260px;
  margin: 0 8px;
  position: relative;
  display: block;
  border: 2px solid #71ADAD;
  border-radius: 12px;
  overflow: hidden;
  height: 82px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
  transition: 0.15s ease;
}

.hiking_banner.course_01 {
  background: url("../img/hiking/hiking-course01-banner.jpg") center / cover no-repeat;
}
.hiking_banner.course_02 {
  background: url("../img/hiking/hiking-course02-banner.jpg") center / cover no-repeat;
}
.hiking_banner.course_03 {
  background: url("../img/hiking/hiking-course03-banner.jpg") center / cover no-repeat;
}
.hiking_banner.course_04 {
  background: url("../img/hiking/hiking-course04-banner.jpg") center / cover no-repeat;
}
.hiking_banner.course_05 {
  background: url("../img/hiking/hiking-course05-banner.jpg") center / cover no-repeat;
}
.hiking_banner::before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 23px;
  height: 21px;
  z-index: 10;
  background: url("../img/icon-triangle.svg") center / cover no-repeat;
}
.hiking_banner .btn_content .course_name{
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 26px;
  z-index: 10;
  color: #fff;
  height: 82px;
  margin-left: 15px;
}
.other_course_en .hiking_banner .btn_content .course_name{
  font-size: 18px;
  line-height: 24px;
}

.hiking_banner:hover {
  transform: translateY(3px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hiking_banner::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #ffffff;
  border-radius: 10px;
  pointer-events: none;
  z-index: 10;
}
.hiking_banner_overlay {
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to left,
  rgba(113, 173, 173, 0) 0%,
  rgba(113, 173, 173, 0) 35%,
  rgb(113 173 173 / 80%) 55%,
  rgb(113 173 173) 80%, 
  rgb(113, 173, 173) 100%);
  z-index: 2;
}

/*--------------------------------------------------------------
  周辺マップ詳細
--------------------------------------------------------------*/
main .map_content {
    display: flex;
    flex-wrap: wrap;
    height: 950px;
    background-color: #F6F8EC;
}
.map_content .map_area{
  position: relative;
  width: calc(100% - 690px);
  height: 950px;
  background: url("../img/map/map-bg2-v2.svg") left / cover no-repeat;
  background-size: contain;
}
.map_content.map_content_en .map_area{
  background: url("../img/map/map-bg2-en-v2.svg") left / cover no-repeat;
}

.map_content .map_dl_area{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width:  690px;
}
.map_content .map_dl_area .map_dl_area_wrap{
  display: flex;
  justify-content: center;
  align-items: center;
}
.map_content .guide_txt01{
 font-size: 18px;
 font-weight: 500;
 text-align: center;
 margin: 15px 0;
}
.map_content .map_dl_area .map_slide{
  position: relative;
  z-index: 1000;
  background-color: #3E487D;
  width: 45px;
  height: 128px;
  margin: 0 10px;
}
.map_slide:before{
  content: "";
  display: inline-block;
  width: 22px;
  height: 25px;
  background: url("../img/map/icon-arrow.svg") center / cover no-repeat;
}
.map_slide.arrow_right:before{  background: url("../img/map/icon-arrow-r.svg") center / cover no-repeat;}

.AreaMap_content{
  width: 550px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
  transition: 0.3s ease;
}
.AreaMap_content .area_photo {
    text-align: center;
    height: 325px;
}
.AreaMap_content .area_label {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    height: 36px;
    background-color: #DFAE57;
}
.AreaMap_content .area_content {
  position: relative;
  padding: 20px;
  background-color: #fff;
}

/* 可視化 スクロール */

.AreaMap_content .scroll-container {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 550px;
  height: 350px;
  padding: 20px 28px 20px 20px; 
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.scroll-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding-right: 10px;
  padding-bottom: 10px;
  overflow: scroll;
  scrollbar-width: none;
}
.guide_scroll{
  position: absolute;
  right: 20px;
  bottom: 0;
  display: inline-block;
  color: #8a8a8a;
  font-size: 16px;
  background-color: #fff;
  padding: 0 10px;
}
.scroll-content::-webkit-scrollbar {  display: none;}
.custom-scrollbar {
  position: absolute;
  background: rgba(0, 0, 0, 0.05);
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
}
.custom-scrollbar.vertical {
  top: 5px;
  right: 3px;
  width: 15px;
  height: calc(100% - 15px);
}
/* 非表示時 */
/* .custom-scrollbar.hidden {  display: none;} */
.custom-thumb {
  position: absolute;
  background: #666;
  border-radius: 3px;
  transition: background 0.2s;
  cursor: grab;
}
.custom-thumb:hover {  background: #444;}
.custom-scrollbar.vertical .custom-thumb {  width: 100%;}
.custom-scrollbar.horizontal .custom-thumb {  height: 100%;}



.AreaMap_content .area_content .area_name {
    font-size: 26px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: 2px;
}
.map_content_en .AreaMap_content .area_content .area_name {
    letter-spacing: unset;
}
.AreaMap_content .area_content .area_name span {
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-left: 10px;
    letter-spacing: 1.5px;
}
.map_content_en  .AreaMap_content .area_content .area_name span {
    letter-spacing: unset;
}
.AreaMap_content .area_content .area_txt {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    margin-top: 20px;
}
.AreaMap_content .area_content .area_dl {
    margin-top: 15px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    width: 100%;
    border-collapse: collapse;
}
.AreaMap_content .area_content .area_dl th,
.AreaMap_content .area_content .area_dl td{
  padding: 4px 0;
}
.AreaMap_content .area_content .area_dl th{
  text-align: left;
  vertical-align: top;
  width: 135px;
}

.AreaMap_content .qr_area {
    display: flex;
    flex-wrap: wrap;
}
.AreaMap_content .box_map, .AreaMap_content .box_hp {
    width: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 23px;
    line-height: 25px;
    font-weight: 400;
    background-color: #CADC8C;
    height: 117px;
}
.AreaMap_content .box_hp {
    background-color: #FDEDD9;
}
.AreaMap_content .box_map img, .AreaMap_content .box_hp img {
    width: 95px;
    height: auto;
}

/*--------------------------------------------------------------
  周辺マップ 部分
--------------------------------------------------------------*/
.AreaMap_content {
  display: none;
}

.AreaMap_content.is-active {
  display: block;
}
.placeList_left{
  position: absolute;
  top: 145px;
  left: 30px;
  z-index: 1000;
}
.map_content_en .placeList_left{
    left: 25px;
}
.placeList_right{
  position: absolute;
  right: 30px;
  top: 247px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* ★ これが最重要 */
}


/* 左側マップボタン */
.placeBtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 17px;
  padding: 0 15px;
  font-size: 22px;
  line-height: 1;
  color: #E57607;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
  border: 1px solid #ddd;
  cursor: pointer;
  width: auto;         
}
.placeList_left .placeBtn{
  height: 34px;
}
.placeList_right .placeBtn{
  margin-top: 10px;
  padding: 6px 15px;
  text-align: right;
  height: 35px;
}
.placeList_right .placeBtn.btn_golf{
  height: 60px;
}
.placeList_en .placeList_right{
  margin-top: 10px;
}


.placeBtn:hover {
  background: #eef6f6;
}
.placeBtn.active {
  background: #E57607;
  color: #fff;
  border-color: #E57607;
}
.placeBtn span.icon_arrow{
  display: inline-block;
  margin-left: 5px;
  width: 11px;
  height: 10px;
  background: url("../img/map/icon-btnarrow-g.svg") center / cover no-repeat;
}
.placeBtn.active span.icon_arrow{
  background: url("../img/map/icon-btnarrow-w.svg") center / cover no-repeat;
}

/* ピン共通 */
.mapPin {
  position: absolute;
  transform: translate(-50%, -100%);
  background: none;
  border: none;
  padding: 0;
  pointer-events: auto;
  /* ★ デフォルト非表示 */
  opacity: 0;
  visibility: hidden;
  transition: .25s;
}
.mapPin img{
  width: 38px;
  filter: drop-shadow(0 0 6px rgba(255,0,0,.6));
  pointer-events: none;
}

/* ★ アクティブのみ表示 */
.mapPin.is-active {
  opacity: 1;
  visibility: visible;
}
