@charset "UTF-8";
/*ロゴ*/
/*#js-main_logo{
   opacity: 0;
    transition: opacity 1.4s;
}
#js-main_logo.active{
    opacity: 1;
}
*/



/*ロゴ*/
#js-main_logo{
    opacity: 0;
    /*transition: opacity 1s;*/
    animation-name:fadeAnime;
    animation-duration:2s;
    
    animation-fill-mode:forwards;
}
@keyframes fadeAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/*ムービー*/
#js-main_text{
    opacity: 0;
    /*transition: opacity 1s;*/
    animation-name:fadeRightAnime;
    animation-duration:2s;
    
    animation-fill-mode:forwards;
}
@keyframes fadeRightAnime{
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*下*/
#js-contents{
    opacity: 0;
    /*transition: opacity 5s;*/
    animation-name:fadeContentsAnime;
    animation-duration:3s;
/*    animation-delay: 10s;*/
    animation-fill-mode:forwards; 
}
#js-contents.active{
    opacity: 1;
}
@keyframes fadeContentsAnime{
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px){
    
}


/* -----------------------------------------------------------	
fadein	
----------------------------------------------------------- */	
/*.fadein{	
opacity: 0;	
will-change: opacity,translate, filter ;	
}
*/


/*
common
================================================ */
.footer{
	background: url("../../assets/imgs/bg_footer.png") top;
    background-size: 100% 720px;
    margin-top: -150px;
    padding-top: 200px;
   
}

.inner{
    max-width: 1000px;
    margin:0 auto;
}
#about .inner{
    width:1080px;
}
#link .inner{
    max-width: 650px;
    margin:0 auto;
}
.wide_1080{
    width:972px;
    margin:0 auto;
    position: relative; 
}
.wide_1080w{
    width:1080px;
    margin:0 auto;
    position: relative; 
}
@media screen and (max-width: 1200px){

}
@media screen and (max-width: 1080px){
.inner,#about .inner{
    width:108%;
    margin-left:-4%;
}
#visit .inner, #access .inner{
    width:100%;
    margin-left:0;
    }
footer .inner {
    width: 100%;
   margin-left: 0;
    }
.wide_1080{
    width:82%;
}
}
@media screen and (max-width: 767px){
    .wide_1080 {
        width: 75%;
    }  

    #visit .contents_area .city_block {
        width: 108%;
        margin-left: -4%;
    }

    #visit .anker_area {
    width: 110%;
    margin-left: -5%;
    }
    .footer {
        background: url(../../assets/imgs/bg_footer.png) top no-repeat;
        background-size: 1200px 780px;
        padding-bottom: 10px;
        margin-top: -200px;
    }
}
@media screen and (max-width: 500px){
    .wide_1080 {
        width: 67%;
    }  
      .inner, #about .inner {
        width: 126%;
        margin-left: -13%;
    }
    
}



.link{
   
}
.link a{
    background:var(--white);
    border-radius: 30px;
    padding:12px 25px;
    position: relative;
    display: block;
    
    
    font-size: 16px;

    letter-spacing: 0;
    
    line-height: 1.3;
}
.link a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
.link a span:after {
  content: '';/*何も入れない*/
  display: inline-block;
  width: 12px;/*画像の幅*/
  height: 12px;/*画像の高さ*/
  background-image: url(../imgs/blank.png);
  background-size: contain;
  top:0;
    bottom: 0;
    margin: auto;
    position: absolute;
    margin-left: 7px;
}

#event .link a{
    width:200px;
    text-align: center;
}
#visit .link_box .link a{
    width:290px;
    margin-top:10px;
}
#visit .link_box{
    margin-top:20px;
}


#emigration ul.link{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#emigration ul.link li{
    width:32.7%;
    margin-bottom:25px;
}
#emigration .link a {
    padding: 12px 20px;
    font-size: 15px;
    letter-spacing: -0.06em;
}


#link ul.link{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#link ul.link li{
    width:300px;
    margin-bottom:25px;
}


@media screen and (max-width: 1080px){
.link a {
    font-size: 13px;
}
#emigration ul.link li {
    width: 49%;
}
#visit .link_box .link a {
   max-width: 240px;
    padding: 12px 14px;
}
}
@media screen and (max-width: 767px){
#link ul.link {
    justify-content: center;
}
#link ul.link li {
    width: 90%;
    margin-bottom: 20px;
    padding: 0 10px; 
}    
}



h2{
    color: var(--white);
   width: 340px;
    font-size:22px;
    text-align: center;
    font-family: "dnp-shuei-gothic-gin-std", sans-serif;

    font-style: normal;
    letter-spacing: 0em;
    padding:12px 10px;
    
    margin:0 auto 50px;/*仮*/
    

}
#about h2{
    background: var(--pink);
    
    /*margin:0 auto;*//*仮*/
    
}
#event h2{
    background: var(--orange);
    
   width: 250px;
    position: absolute;
    margin:0;
    margin-left: -70px;
    letter-spacing: -0.12em;
}
#visit h2{
    background: var(--yellow);
}
#emigration h2{
    background: var(--green);
}
#access h2{
    background: var(--purple);
}


@media screen and (max-width: 1080px){
h2{font-size: 22px;}
#event h2 {
    margin-left: -35px;
    margin-top: -85px;
}
}
@media screen and (max-width: 767px){
h2 {
    font-size: 16px;
    width: 240px;
}	
}



/*メインカーブ*/
.border_curve_t_main{
    background: url(../../assets/imgs/border_curve_01.png) no-repeat;
   background-size: 54px;
}




#main{
    position: relative;
}
#main .border_beside_01{
    top: 40px;
    width: 100%; 
    
}
#main .border_curve_t_main{
    top: -61px;
    right: 2px;
    width: 54px;
}
#main .border_vertical_t_main{
    top: -10px;
    right: 1px;
    width: 4px;
    z-index: 1;
    height: 96%;
}
#main .border_curve_b_main{
    top: -61px;
    right: 1px;
    width: 54px;
}



#main .map_area .border_curve_l{
    background: url(../../assets/imgs/border_curve_02.png) no-repeat;
    background-size: 54px;

    top: 0;
    left:-54px;
}
#main .map_area .border_beside_t{
    background: url(../../assets/imgs/border_beside.png) repeat-x;
    background-size: 48px;
    height: 4px;
    position: absolute;
    width: 100%;
    top: 51px;

}
#main .map_area .border_curve_r{
    background: url(../../assets/imgs/border_curve_01.png) no-repeat;
    background-size: 54px;
    
    top: 52px;
    right:-54px;
    
}
#main .map_area .border_vertical_r{
    height: 104%;
    
    top: 104px;
    right: -55px;
}



#about .border_curve_r{
    background: url(../../assets/imgs/border_curve_03.png) no-repeat;
    background-size: 54px;
    
    top: -35px;
    right:-54px;
}
#about .border_beside_t{
    z-index: -1;
    top: 15px;
}
#about .border_curve_l{
    background: url(../../assets/imgs/border_curve_04.png) no-repeat;
    background-size: 54px;
    
    top: 15px;
    left: -54px;
}
#about .border_vertical_l {
    height: 103%;
    
    top: 69px;
    left: -55px;
}


#event .border_vertical_l {
    top: 69px;
    left: -55px;
}



#visit .border_curve_l {
    background: url(../../assets/imgs/border_curve_02.png) no-repeat;
    background-size: 54px;
    top: -31px;
    left: -54px;
}
#visit .border_beside_t{
    z-index: -1;
    top: 21px;
    width:103%;
}
#visit .border_curve_r{
    background: url(../../assets/imgs/border_curve_01.png) no-repeat;
    background-size: 54px;
    
    top: 21px;
    right: -83px;
}
#visit .border_vertical_r{
    top: 75px;
    right: -84px;
}



#emigration .border_curve_r{
    background: url(../../assets/imgs/border_curve_03.png) no-repeat;
    background-size: 54px;
    
    top: -30px;
    right: -83px;
}
#emigration .border_beside_t{
    z-index: -1;
    top: 21px;
    width:103%;
}
#emigration .border_curve_l {
    background: url(../../assets/imgs/border_curve_04.png) no-repeat;
    background-size: 54px;
    
    top: 20px;
    left: -54px;
}
#emigration .border_vertical_l {
    height: 110%;
    
    top: 69px;
    left: -53px;
}



#access .border_curve_l{
    background: url(../../assets/imgs/border_curve_02.png) no-repeat;
    background-size: 54px;
    
    top: -90px;
    left: -53px;
}
#access .border_beside_t{
    top: -39px;
    width: 64px;
}
#access .border_curve_r{
    background: url(../../assets/imgs/border_curve_01.png) no-repeat;
    background-size: 54px;
    
    top: -38px;
    left: 63px;
}
#access .border_vertical_l {
    height: 25px;
    top: 16px;
    left: 114px;
  
}




@media screen and (max-width: 1200px){
#visit .border_beside_t {
    width: 100%;
}
#visit .border_curve_r {
    top: 22px;
    right: -53px;
}
#visit .border_vertical_r {
    top: 75px;
    right: -54px;
    height: 100%;
}
#emigration .border_curve_r {
    top: -30px;
    right: -54px;
}
#emigration .border_beside_t {
    top: 21px;
    width: 100%;
}
   
}
@media screen and (max-width: 1080px){
#about .border_vertical_l {
    height: 105%;
}
#visit .border_vertical_r {
        top: 75px;
        right: -54px;
        height: 99.3%;
    }
#emigration .border_vertical_l {
    height: 99%;
} 
}
@media screen and (max-width: 767px){
	
#emigration .border_vertical_l {
        height: 98%;
    }
#visit .border_vertical_r {

        height: 99.8%;
    }
}
@media screen and (max-width: 500px){
#visit .border_vertical_r {
        height: 99.7%;
    }
}
    



/*----------------------------------------

メイン

----------------------------------------*/
#main .top_area{
   
    margin: 0 auto;
    height: 480px;
}
#main .left_box{
    padding-top: 102px;
    
    
}
#main .top_area .nav_box{
    position: absolute;
    padding-top: 20px;
    height: 100%;
    left: -9.3%;
}




#main .top_area .logo_box{
    width:350px;
    position: absolute;
    left: 10%;
    padding-top: 50px;
}
#main .top_area .movie_box{
    width:850px;
    border-radius: 30px 0 0 30px;
    margin: 0 calc(50% - 50vw);
    width: 50vw;
    position: absolute;
    right: 0;
    top: 0;
    margin: auto;


}

.movie_wrapper {
	
}
.movie_wrapper .inbox {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	overflow: hidden;
    border-radius: 30px 0 0 30px;
    z-index: 1;
}
.movie_wrapper .inbox iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}




#main .top_area .nav_box ul li{
    line-height:1.4;
    margin-bottom:24px;
    font-size: 14px;
    font-family: var(--sub-font);
    text-align: right;
    color: var(--black);
    padding-right: 5px;
    z-index: 1;
    position: relative;
}
#main .top_area .nav_box ul li:nth-child(1){
    border-right: 7px solid #ec8a9f;
}
#main .top_area .nav_box ul li:nth-child(2){
    border-right: 7px solid #e9ac44;
}
#main .top_area .nav_box ul li:nth-child(3){
    border-right: 7px solid #b4b612;
}
#main .top_area .nav_box ul li:nth-child(4){
    border-right: 7px solid #499484;
}
#main .top_area .nav_box ul li:nth-child(5){
    border-right: 7px solid #ab5f91;
}


#main .top_area .nav_box ul li a{
    color: var(--black);
}


@media screen and (max-width: 1440px){
#main .top_area .logo_box {
    width: 290px;
        left: 7%;
    }
#main .top_area .movie_box {
    margin: 0 calc(50% - 50vw);
    width: 58vw;
}
}
@media screen and (max-width: 1300px){
#main .top_area {
    height: 440px;
}
#main .map_area .border_beside_t {
    width: 90%;
    right: 0;
    }
    #main .top_area .nav_box {
        left: 0;
    }
#main .map_area .border_curve_l {
    left: 46px;
}
#main .top_area .logo_box {
        width: 300px;
        left: 15%;
    }
    
#main .top_area .movie_box {
    /*height: 410px;*/
    width: 53vw;
    top: 15px;
    }
#main .border_vertical_t_main {

    height: 79%;
}
}
@media screen and (max-width: 1080px){
#main .wide_1080w {
    width: 82%;
}
   #main .top_area .nav_box {
        left: -40px;
        padding-top: 130px;
    } 

#main .border_beside_01 {
    top: 0;
}
#main .top_area {
        height: 440px;
        top: -39px;
        position: relative;
    } 
#main .top_area .logo_box {
        width: 260px;
        left: 18%;
        top: 42px;
    }
#main .top_area .movie_box {
        /*height: 380px;*/
        width: 86%;
        top: 277px;
        z-index: 1;
    }
#main .border_vertical_t_main {
        height: 129%;
    }
    #main .map_area .border_curve_l {
        left: 60px;
    }
    
}
@media screen and (max-width: 767px){
#main .wide_1080w{
    width:100%;
    }
#main .top_area {
    height: auto;
    top: 0;
    }
#main .top_area .movie_box {
    width: 100%;
    margin: 0 auto;
    position: relative;
    top: 0;
    }  
.movie_wrapper .inbox {
    border-radius: 0;
    }  
#main .top_area .logo_box {
    width: 220px;
    left: 0;
    padding-top: 0;
    margin: 0 auto;
    right: 0;
    top: -24px;
    }
#main .left_box {
    height: 180px;
    position: relative;
    padding-top: 0;
    width: 60%;
    margin: 0 auto;
    }   
#main .border_beside_01 {
    top: -62px;
}
#main .top_area .border_curve_t_main {
    top: -62px;
    left: -96px;
}
#main .top_area .border_vertical_t_main {
    top: -10px;
    left: -45px;
    z-index: 0;
    height: 120px;
}    
#main .top_area .border_curve_b_main {
    background: url(../../assets/imgs/border_curve_02.png) no-repeat;
    background-size: 54px;
    top: 90px;
    left: -45px;
    }
#main .top_area .border_beside_b_main{
    background: url(../../assets/imgs/border_beside.png) repeat-x;
    background-size: 40px;
    height: 4px;
    position: absolute;
    width: 100%;
    top: 141px;
} 
#main .top_area .border_curve_l_main {
    background: url(../../assets/imgs/border_curve_01.png) no-repeat;
    background-size: 54px;
    top: 141px;
    right: -53px;
}    
 
    
#main .top_area .nav_box ul li{
    text-align: left;
    padding-left: 8px;
}
#main .top_area .nav_box ul li:nth-child(1){
    border-left: 7px solid #ec8a9f;
    border-right: 0;
}
#main .top_area .nav_box ul li:nth-child(2){
    border-left: 7px solid #e9ac44;
    border-right: 0;
}
#main .top_area .nav_box ul li:nth-child(3){
    border-left: 7px solid #b4b612;
    border-right: 0;
}
#main .top_area .nav_box ul li:nth-child(4){
    border-left: 7px solid #499484;
    border-right: 0;
}
#main .top_area .nav_box ul li:nth-child(5){
    border-left: 7px solid #ab5f91;
    border-right: 0;
}
    #main .top_area .nav_box {
        left: 0;
        right: 0;
        width: 81%;
        margin: auto;
                position: relative;
                padding-top: 45px;
    }
#main .top_area .nav_box ul{
       width: fit-content;
    }
#main .top_area .nav_box .logo_box_02 {
        width: 16px;
        right: 10%;
        position: absolute;
        top: 45px;
    }
#main .top_area .border_vertical_l_main {
        top: -10px;
        z-index: -1;
            left: 1px
    }

    
    
    

}







#main .map_area{
    background: url(../../assets/imgs/bg_map.png) no-repeat center bottom;
    padding: 70px 0 40px 0;
    background-size: cover;
    position: relative;
}
#main .map_area .flex_box {
    display: flex;
    position: relative;
    padding: 110px 0 20px 0;
}
#main .map_area .image{
    max-width:700px;
    margin-bottom: -220px;
    margin-left: -50px;
}
#main .map_area .text{
    position: absolute;
    right: 20px;
    line-height: 2.6;
    padding-top:20px;
}
#main .map_area .text .title{
    font-size: 28px;
    line-height: 1.6;
    margin-bottom:20px;
}
@media screen and (max-width: 1300px){
	#main .map_area {
    padding: 0 0 40px 0;
    }
}
@media screen and (max-width: 1080px){
    #main .map_area {
        padding: 180px 0 40px 0;
    }
#main .map_area .flex_box {
    justify-content: center;
    align-items: center;
}
#main .map_area .text {
    font-size: 14px;
    padding-top: 0;
    position: static;
    line-height: 2.2;
}
#main .map_area .text .title {
    font-size: 22px;
}
#main .map_area .image {
    width: 400px;
    margin-bottom: -100px;
}	

    #main .map_area .border_beside_t {
        width: calc(100% - 108px);
        right: 0;
        left: 108px;
    }
}
@media screen and (max-width: 767px){
#main .map_area {
    padding: 0 0 40px 0;
}
    #main .map_area .border_curve_l {
    left: -4%;
    top: -25px;}
#main .map_area .border_beside_t {
    top: 25.4px;
    width: calc(100% - 31px);
    left: 31px;
    }
#main .map_area .border_curve_r {
    top: 27px;
}
#main .map_area .border_vertical_r {
    height: 99.6%;
    top: 81px;
}
    
#main .map_area .text .title {
        font-size: 18px;
    }	
#main .map_area .image {
        width: 140%;
        margin-bottom: -350px;
        margin-left: 0;
        margin-top: -40px;
    }
#main .map_area .flex_box {
    padding: 160px 0 20px 0;
    flex-direction: column-reverse;
}	
}
@media screen and (max-width: 500px){
#main .map_area .border_curve_l {
        left: -10%;
    }
#main .map_area .image {
    width: 160%;
    margin-bottom: -210px;}
    
#main .map_area .border_vertical_r {
    
}
#main .map_area .border_beside_t {
    width: calc(100% - 21px);
    left: 21px;
    }
}
/*----------------------------------------

吉野線エリアはこんなところ

----------------------------------------*/

#about{
    padding:120px 0 0 0;/*仮*/
}

#about .block{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#about .block .text{
 
    font-size: 15px;
    line-height: 2.2;
    margin-right: 30px;
}
#about .block:nth-child(even){
    flex-direction: row-reverse;
}
#about .block:nth-child(even) .text{
 
    margin-right: 0;
    margin-left: 30px;
}
#about .block .text .title{
    font-size:21px;
    margin-bottom: 25px;
    line-height: 1.8;
    
}
#about .block .image{
    max-width:550px;
}


@media screen and (max-width: 1080px){

#about .block {
    margin-bottom: 40px;
    justify-content: center;
}
#about .block .text {
    font-size: 13px;
    line-height: 2.2;
    margin-right: 30px;
}
#about .block .text .title {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
}
#about .block .image {
    max-width: 45vw;
    margin-right: -20px;
}
#about .block:nth-child(even) .image {
    margin-left: -15px;
    }
#about .block:nth-child(even) .text {
    margin-left: 52px;
    }
}
@media screen and (max-width: 767px){
#about {
    padding: 70px 0 0 0;
}
#about .block {
    flex-direction: column-reverse;
}
#about .block:nth-child(even){
    flex-direction: column-reverse;
    }
#about .block .text,#about .block:nth-child(even) .text{
        text-align: center;
    margin:0;
    }
#about .block .image {
        max-width: 100%;
        margin:0 auto 20px;
    }
#about .block .text .title {
        font-size: 16px;
    }
    #about .block:nth-child(even) .image {
        margin-left: 0;
    }
}



/*----------------------------------------

イベント・トピックス

----------------------------------------*/
#event {
    background: url(../../assets/imgs/bg_event.png) no-repeat center top;
    background-size: 1550px;
}
#event .inner{
   padding: 167px 0px 70px 0;
}


#event .banner{
    max-width:520px;
    margin: 0 auto 65px;
}
#event ul{
    display: flex;
    flex-wrap: wrap;
}
#event ul li.list_li{
    background: var(--white);
}
#event ul li.list_li:last-child{
    margin-right:0;
}

#event .link a{
    margin:0 auto;
}
.main_cont {
	margin-bottom: 50px;
    font-weight: 400;
}
.main_cont .list_wrap > ul {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
}
.main_cont .list_wrap > ul > li {
	flex-grow: 0;
	flex-shrink: 0;
	width: calc((100% - 100px) / 3);
	transition: all .3s ease-in-out;
	display: flex;
	align-items: stretch;
	margin-left: 50px;
    border-radius: 20px 0 20px 0;
    padding: 25px;
}
.main_cont .list_wrap > ul > li:nth-child(3n + 1){
	margin-left: 0;
}
.main_cont .list_wrap a {
	display: block;
	overflow: hidden;
	transition: opacity .3s ease-in-out;
	background: #fff;
	width: 100%;

}
.main_cont .list_wrap a:hover {
	opacity: .7;
}
.main_cont .list_wrap .thum_box {
	overflow: hidden;
}
.main_cont .list_wrap .thum_box img {
	transform: scale(1.01);
    transition: all .4s ease-in-out;
	vertical-align: middle;
	width: 100%;
	height: auto;
}
.main_cont .list_wrap a:hover .thum_box img {
    transform: scale(1.1);
}
.main_cont .list_wrap .text_box {
	padding: 15px 0 0 0;
}
.main_cont .list_wrap .item_date {
    font-family: var(--sub-font);
	font-size: 13px;
	margin-bottom: 2px;
}
.main_cont .list_wrap .item_ttl {
	font-size: 19px;
    line-height: 1.6;
	margin-bottom: 15px;
    line-height: 1.2;
    
}
.main_cont .list_wrap .item_area {
	display: inline-block;
	color: #8b6841;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
	margin-bottom: 8px;
	padding: 4px 10px;
	position: relative;
	border: 1px solid #a98960;
	border-radius: 4px;
}
.main_cont .list_wrap .keyword {
	line-height: 1.3;
}
.main_cont .list_wrap .keyword li {
	font-size: 14px;
	display: inline-block;
	margin-right: 10px;
     white-space: nowrap;
}
.main_cont .list_wrap .keyword li::before {
    content: '#';
    display: inline-block;
	padding-right: 3px;
}
.main_cont .btn {
	max-width: 288px;
	margin: 0 auto;
}
.main_cont .btn a {
	display: block;
	overflow: hidden;
	border-radius: 100px;
	font-size: 14px;
	text-align: center;
	color: #fff;
	line-height: 50px;
	background: #c83056;
	transition: opacity .3s ease-in-out;
}
.main_cont .btn a:hover {
	opacity: .7;
}
.period{
       font-size: 14px; 
    }

	
@media screen and (max-width: 1080px){
#event .banner {
    max-width: 320px;
    margin: 0 auto 50px;
}
.main_cont .list_wrap > ul > li {
    width: calc((100% - 60px) / 3);
    margin-left: 30px;
    padding: 20px;
}
.main_cont .list_wrap .item_ttl {
    font-size: 14px;
}
}


@media screen and (max-width: 767px){
#event ul li.list_li:nth-child(3) {
   display: none;
}
.main_cont .list_wrap > ul > li {
        width: calc((100% - 20px) / 2);
        margin-left: 20px;
        padding: 13px;
    }
.main_cont .list_wrap .keyword li {
    font-size: 12px;
    margin-right: 5px;
}
.main_cont .list_wrap .item_date {
    font-size: 11px;
    }
.period{
       font-size: 11px; 
    }
}



/*----------------------------------------

吉野線エリアを知る・訪ねる

----------------------------------------*/
#visit {
    
    padding:100px 0 0 0;
}

#visit .anker_area {
    margin-bottom: 50px;
}
#visit .anker_area ul{
    display: flex;
    justify-content: space-around;

}
#visit .anker_area ul li{
    width:calc(100%/7);
    text-align: center;
    border-left:1px solid #b4b612;
    padding: 0 5px;
}
#visit .anker_area ul li:last-child{
    border-right:1px solid #b4b612;
}
#visit .anker_area ul li a{
    background: var(--white);
    position: relative;
    height:70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;

}
#visit .anker_area ul li a:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 9px 0px 9px;
  border-color: #b4b612 transparent #fff0 #fff0;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateY(0) translateX(-50%);
  -webkit- transform: translateY(0) translateX(-50%);
  margin: auto;
}





#visit .contents_area {
    padding-top: 40px;
}
#visit .contents_area_01_first{
}
/*重なり順*/
#visit .contents_area .city_block,
#visit .contents_area .common_block {
   position: relative;
}
#visit .contents_area .city_block{
    z-index: 1;
}
#visit .contents_area .spot_block {
    top: -35px;
}
#visit .contents_area .gourmet_block {
    top: -70px;
}


/*city_block*/
#visit .contents_area .city_block{
    display:flex;
    justify-content: space-between;
}
#visit .contents_area .city_block .title{
    background: var(--white);
    color:  var(--black);
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    border:1px solid #b4b612;
    font-size:26px;
    max-width:60px;
    height:190px;
    padding-top:15px;
    letter-spacing: 0.1em;
    box-shadow: -6px -6px #b4b612;
}
#visit .contents_area .city_block .text{
    max-width: 325px;
    font-size: 15px;
    line-height: 2.2;
    /*padding: 0 1%;*/
}
#visit .contents_area .city_block .image{
    max-width:610px;
}
/*city_block左右レイアウト変更*/
#visit .contents_area_01 .city_block  {
    
}
#visit .contents_area_01 .city_block .image {
    margin-right: -50px;
}
#visit .contents_area_01 .city_block .title {
    /*margin-right: 25px;*/
}
#visit .contents_area_02 .city_block  {
    flex-direction: row-reverse;
}
#visit .contents_area_02 .city_block .image {
    margin-left: -50px;
}
#visit .contents_area_02 .city_block .title {
    /*margin-left: 25px;*/
}


/*spot_block,gourmet_block共通*/
#visit .contents_area .block{
    
}
#visit .contents_area_last .block {
    margin-bottom:0;
}
#visit .contents_area .common_block .inner{
    position: relative;
    display: flex;
    align-items: center;
}
#visit .contents_area .spot_block .inner{
    height: 400px;
}
#visit .contents_area .gourmet_block .inner{
    height: 360px;
}
#visit .contents_area .spot_block ul{
    position: absolute;
}
#visit .contents_area .gourmet_block ul{
    position: absolute;
}

#visit .contents_area ul li{
    margin-right:20px;
}
#visit .contents_area ul li:last-child{
    margin-right:0;
}
/*タイトル共通*/
#visit .contents_area .recommend_title{
    width:180px;
    font-size: 18px;
    text-align: center;
    transform: rotate(10deg);
    position: absolute;
}
#visit .contents_area .spot_block .recommend_title{
    background: var(--white);
}
#visit .contents_area .gourmet_block .recommend_title{
    background: var(--yellow);
    color:#fff;
}

/*背景指定*/
#visit .contents_area .common_block {
  justify-content: center;
  align-items: center;
    
    margin: 0 calc(50% - 50vw);
    width: 100vw;
}

#visit .contents_area .common_block ul{
    display: flex;
    /*max-width: 710px;*/
    max-width: 822px;
    justify-content: space-between;
}
#visit .contents_area .common_block ul li{
    /*max-width:250px;*/
}
#visit .contents_area .common_block .image{
    
}
#visit .contents_area .common_block .text{
    font-size: 14px;
    text-align: center;
        line-height: 1.7;
        letter-spacing: -0.07em;
    font-weight: normal;
}
#visit .contents_area .common_block .title{
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    margin: 14px auto 9px;
    letter-spacing: -0.06em;
}
#visit .contents_area .common_block .title span.aki{
    letter-spacing: -0.05em;
}
#visit .contents_area .common_block .title span.tsume{
    letter-spacing: -0.2em;
}
#visit .contents_area .common_block .title span.tsume2{
    letter-spacing: -0.26em;
}

/*01背景*/
#visit .contents_area_01 .spot_block {
  background: linear-gradient(90deg, #c1c14c57 77%, #ffffff00 0%);
}
#visit .contents_area_01 .gourmet_block {
  background: linear-gradient(90deg, #ffffff00 23%, #ffffff8a 0%);
}
/*02背景*/
#visit .contents_area_02 .spot_block {
    background: linear-gradient(90deg, #ffffff00 23%, #c1c14c57 0%);
}
#visit .contents_area_02 .gourmet_block {
    background: linear-gradient(90deg, #ffffff8a 77%, #ffffff00 0%);
}

/*01リスト位置*/
#visit .contents_area_01 .spot_block ul{
    left: 0;
}
#visit .contents_area_01 .gourmet_block ul {
    right: 0;
}
/*02リスト位置*/
#visit .contents_area_02 .spot_block ul{
    right: 0;
}
#visit .contents_area_02 .gourmet_block ul {
    left: 0;
}


/*01タイトル位置*/
#visit .contents_area_01 .spot_block .recommend_title {
    transform: rotate(10deg);
    top: -5px;
    left: 0;
}
#visit .contents_area_01 .gourmet_block .recommend_title{
    transform: rotate(-10deg);
    top: 6px;
    left: 16%;
}
/*02タイトル位置*/
#visit .contents_area_02 .spot_block .recommend_title {
    transform: rotate(-10deg);
    top: -5px;
    right: 0;
}
#visit .contents_area_02 .gourmet_block .recommend_title{
   transform: rotate(10deg);
       top: 0px;
   left: 62%;
}


	
@media screen and (max-width: 1200px){

/*01背景*/
#visit .contents_area_01 .spot_block {
    background: linear-gradient(90deg, #c1c14c57 92%, #ffffff00 0%);
    padding-left: 10%;
}
#visit .contents_area_01 .gourmet_block {
    background: linear-gradient(90deg, #ffffff00 8%, #ffffff8a 0%);
    padding-right: 10%;
}
/*02背景*/
#visit .contents_area_02 .spot_block {
    background: linear-gradient(90deg, #ffffff00 8%, #c1c14c57 0%);
    padding-right: 10%;
}
#visit .contents_area_02 .gourmet_block {
    background: linear-gradient(90deg, #ffffff8a 92%, #ffffff00 0%);
    padding-left: 10%;
}

#visit .contents_area_01 .gourmet_block .recommend_title {
    top: -2px;
}
#visit .contents_area_02 .spot_block .recommend_title {
    top: -21px;
    right: 17px;
}
#visit .contents_area_02 .gourmet_block .recommend_title {
    top: 4px;
    left: 72%;
}   

    
    
#visit .contents_area .common_block ul li {
    /*max-width: 210px;*/
    margin-right: 15px;
}
#visit .contents_area .spot_block {
    top: 50px;
}
#visit .contents_area .gourmet_block {
        top: 30px;
    }
#visit .contents_area {
        padding-top: 120px;
}
#visit .contents_area_01_first{
    padding-top: 50px;
}

}

	
@media screen and (max-width: 1080px){
#visit {
    padding: 100px 0 40px 0;
}
#visit .anker_area {
    margin-bottom: 20px;
}
/*01背景*/
#visit .contents_area_01 .spot_block {
    background: linear-gradient(90deg, #c1c14c57 96%, #ffffff00 0%);
    padding-left: 8%;
}
#visit .contents_area_01 .gourmet_block {
    background: linear-gradient(90deg, #ffffff00 3%, #ffffff8a 0%);
    padding-right: 8%;
}
/*02背景*/
#visit .contents_area_02 .spot_block {
    background: linear-gradient(90deg, #ffffff00 3%, #c1c14c57 0%);
    padding-right: 8%;
}
#visit .contents_area_02 .gourmet_block {
    background: linear-gradient(90deg, #ffffff8a 96%, #ffffff00 0%);
    padding-left: 8%;
}

#visit .contents_area .city_block .image {
    width: 100%;
}
#visit .contents_area_01 .city_block .image {
    margin-right: -48px;
            
}
#visit .contents_area .city_block .text {
        font-size: 14px;
        max-width: 280px;
        padding: 0 20px;
}
#visit .contents_area .city_block .text p{
       width: 250px;
}
#visit .contents_area_01 .city_block .title {
    margin-right: 0px;
}
#visit .contents_area .city_block .title {
    font-size: 22px;
    max-width: 44px;
}
#visit .link_box {
    margin-top: 15px;
}

#visit .contents_area_01 .gourmet_block .recommend_title {
    left: 8%;
    top: -18px;
}
#visit .contents_area_02 .gourmet_block .recommend_title {
   top: -18px;
    }
    #visit .contents_area .common_block ul li {
        max-width: 210px;
    }
}



@media screen and (max-width: 767px){
#visit .anker_area {
    margin-bottom: 0;
}
#visit .anker_area ul {
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 14px;
}
#visit .anker_area ul li {
    width: calc(100% / 4);
    margin-bottom: 10px;
    }
#visit .anker_area ul li:nth-child(4){
         border-right: 1px solid #b4b612;
    }
#visit .anker_area ul li a {
    height: 54px;
}


#visit .link a span:after {
    right: 32px;
}

#visit .contents_area_01 .spot_block {
        background: linear-gradient(90deg, #c1c14c57 90%, #ffffff00 0%);
        padding-left: 0;
    }
#visit .contents_area_01 .gourmet_block {
    background: linear-gradient(90deg, #ffffff00 10%, #ffffff8a 0%);
    padding-right: 0;
 
    }
    #visit .contents_area_02 .spot_block {
        background: linear-gradient(90deg, #ffffff00 10%, #c1c14c57 0%);
        padding-right: 0;
    }
    #visit .contents_area_02 .gourmet_block {
        background: linear-gradient(90deg, #ffffff8a 90%, #ffffff00 0%);
        padding-left: 0;
    }
    
#visit .contents_area .city_block {
    flex-direction: row;
    flex-wrap: wrap;
        justify-content: center;
}	

#visit .contents_area .city_block .title {
        font-size: 18px;
        margin-right: 5%;
    }
    #visit .contents_area .city_block .text {
        font-size: 14px;
        width: 80%;
        padding: 0;
        
    }
#visit .contents_area .city_block .text p{
        width: auto;
}
    #visit .contents_area .city_block .image {
        max-width: 115%;
        margin: 0 calc(50% - 50vw);
        width: 100vw;
        margin-top: 20px;
        
    }
#visit .contents_area_02 .city_block .image {
    /*margin-left: 0;*/
    }
#visit .contents_area_02 .city_block .title {
    margin-left: 0;
    }
 
#visit .contents_area .common_block ul {
    flex-direction: column;
    position: relative;
    max-width: 100%;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 20px;
    }
    
#visit .contents_area .spot_block .inner,
#visit .contents_area .gourmet_block .inner{
    height: auto;
    }
#visit .contents_area ul li {
    margin-right: 0;
    }
#visit .contents_area .common_block ul li {
    max-width: 60%;
    margin-bottom: 30px;
    margin-right: 0;
    }

 #visit .contents_area_02 .spot_block {
        padding-right: 0;
    }  
#visit .contents_area_02 .gourmet_block {
        padding-left: 0;
    }
#visit .contents_area_01 .spot_block .recommend_title {
    right: 2%;
     left: auto;
}
#visit .contents_area_01 .gourmet_block .recommend_title,
#visit .contents_area_02 .spot_block .recommend_title{
        left: 5%;
    }
#visit .contents_area_02 .gourmet_block .recommend_title {
        top: 4px;
        right: 2%;
        transform: rotate(10deg);
        left: auto;
    }

    
#visit .contents_area .spot_block ul {
        padding-bottom: 50px;
    }  
    
    

}


@media screen and (max-width: 500px){
    #visit .contents_area .city_block .title {
        max-width: 100%;
        height: auto;
        width: 100%;
        padding-top: 0;
        padding-left: 15px;
        writing-mode: inherit;
        margin-right: 0;
    }
        #visit .contents_area .city_block .text {

        width: auto;
        max-width: 100%;
        padding: 0;
        margin-top: 15px;
    }
#visit .contents_area .city_block .text p{
        width: auto;
}

}


/*----------------------------------------

吉野線エリアでくらす

----------------------------------------*/
#emigration{
    padding: 100px 0 130px 0;
   
    background: url(../../assets/imgs/bg_emigration.png) no-repeat center bottom;

    background-size: 1440px 695px;
}
#emigration .step_area{
    margin-bottom: 60px;
    
    
}

#emigration .title{
     font-size: 21px;
}
#emigration .step_area .title{
    color: var(--green); 
    margin-bottom: 10px;
}
#emigration .support_area .title{
    color: var(--white);
    margin-bottom: 15px;
}



#emigration .step_area .list_box{
    display: flex;
}
#emigration .step_area .block{
     margin-right:10px;
}
#emigration .step_area .block:last-child{
    margin-right: 0;
}
#emigration .step_area .block .block_title{
    text-align: center;
    margin-bottom:10px; 
}
#emigration .step_area .block_01 .block_title{
    background: #dfd8c2;
}
#emigration .step_area .block_02 .block_title{
    background: #ded0aa;
}
#emigration .step_area .block_03 .block_title{
    background: #c4b280;
}
#emigration .step_area .block ul{
    display: flex;
}
#emigration .step_area .block ul li{
    background: #fff;
    font-size: 15px;
    text-align: center;
    line-height: 1.6;
    margin-right:10px;
    
    position: relative;
    display: inline-block;
    height: 210px;
}

#emigration .step_area .block ul li:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -14px;
    margin-top: -6px;
    border: 6px solid transparent;
    border-left: 8px solid #fff;
    z-index: 1;
}

#emigration .step_area .block ul li:last-child{
    margin-right:0;
}
#emigration .step_area .block_03 ul li:last-child:after {
    content: none;
}
#emigration .step_area .block ul li .image{
    /*max-width: 84px;*/
    padding:20px 20px 0 20px; 
}
#emigration .step_area .block ul li .text{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
}

#emigration .support_area{
   
}



@media screen and (max-width: 1080px){

#emigration {
    padding: 0 0 50px 0;
    }
#emigration .step_area .block ul li .image {
    padding: 10px 10px 0 10px;
}
#emigration .step_area .block ul{
    font-size: 13px;
}

}
@media screen and (max-width: 767px){
    #emigration {
        padding: 0;
        background-size: 1400px 1500px;
    }
#emigration .title {
    font-size: 18px;
}	
#emigration .step_area .list_box {
    flex-wrap: wrap;
}
 #emigration .step_area .block ul {
    flex-wrap: wrap;
}   
    
#emigration .step_area .block ul li {
    font-size: 14px;
    height: auto;
    width: 100%;
    margin-bottom: 15px;
    margin-right: 0;
    display: flex;
    align-items: center;
            padding: 10px 20px;
}
#emigration .step_area .block ul li .image {
    width: 80px;
    padding:0;
}
#emigration .step_area .block ul li .text {
    height: auto;
    padding-left:20px;
   text-align: left;
}
#emigration .step_area .block {
    margin-right: 0;
            width: 100%;
}

#emigration .step_area .block ul li:after {
    top: auto;
        bottom: -16px;
        right: 50%;
        margin-right: -6px;
        border-left: 14px solid transparent;
        border-right: 14px solid transparent;
        border-top: 10px solid #fff;
}
#emigration ul.link {
    flex-direction: column;
}
#emigration ul.link li {
        width: 100%;
    margin-bottom: 20px;
    }
}
/*----------------------------------------

アクセス

----------------------------------------*/
#access{

    padding-top: 100px;
}
#access .bg_block {
    background: linear-gradient(90deg, #ffffff00 20%, #ffffffc2 0%);
    padding-top:40px;
    margin: 0 calc(50% - 50vw);
	width: 100vw;
}
#access .flex_block{
    display: flex;
    align-items: center;
    margin-bottom:50px;
}
#access .flex_block h2{
    margin:0;

}
#access .flex_block .image_01{
    width:350px;
    margin-left: 30px;
}

#access .image_block .image_02{
    width:720px;
    margin:0 auto;
    padding-bottom: 55px;

}
#access .image_block .image_02 .note{
    display: flex;
    justify-content: space-between;
    padding: 20px 6.8% 0;
}
#access .image_block .image_02 .note .cap{
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.03em;
}
#access .image_block .image_02 .note .icon_desc{
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.09em;
    line-height: 1;
}
#access .image_block .image_02 .note .icon_desc .icon_sharecycle{
    width: 19px;
}
#access .image_block .ban{
    padding-bottom: 50px;
    max-width: 665px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
#access .image_block .ban_item{
    max-width: 320px;
    width: 50%;
}
#access .image_block .ban_item .ttl{
    font-size: 17px;
    text-align: center;
    font-family: "dnp-shuei-gothic-gin-std", sans-serif;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 0;
    margin-bottom: 0.3em;
}
#access .image_block .ban_item a{
    display: flex;
    align-items: center;
    border-radius: 5px;
    position: relative;
    color: var(--white);
    height: 44px;
}
#access .image_block .ban_item a:hover img{
    opacity: 1;
}
#access .image_block .ban_item._btn_ticket a{
	justify-content: flex-start;
    padding-left: 8px;
    background: #E83820;
}
#access .image_block .ban_item._btn_sharecycle a{
    justify-content: center;
    background: #EEB716;
}
#access .image_block .ban_item a:before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    margin: auto;
}
#access .image_block .ban_item a .logo_ticket{
    max-width: 279px;
}
#access .image_block .ban_item a .logo_sharecycle{
    max-width: 200px;
}



#link{
    padding:50px 0;

}
#link .title{
    text-align: center;
    font-size:24px;
    margin-bottom: 50px;
}


@media screen and (max-width: 1300px){
#access .bg_block {
    background: linear-gradient(90deg, #b1343400 12%, #ffffff63 0%);
}
}
@media screen and (max-width: 1080px){
#access .flex_block h2 {
    margin-left: 5%;
}
#access .bg_block {
    background: linear-gradient(90deg, #b1343400 12%, #ffffff63 0%);
}
#access .flex_block .image_01 {
    width: 320px;
}
#access .image_block .image_02 {
    width: 550px;
}
#access .image_block .image_02 .note {
    padding: 20px 4% 0;
}
#access .image_block .ban {
    align-items: center;
    flex-direction: column;
    gap: 25px;
}
#access .image_block .ban_item .ttl {
    font-size: 15px;
    margin-bottom: 0.1em;
}
}
@media screen and (max-width: 767px){
#access .bg_block {
        background: linear-gradient(90deg, #b1343400 8%, #ffffff63 0%);
    }
#access .flex_block {
    align-items: flex-start;
    margin-bottom: 50px;
    flex-direction: column;
}
#access .image_block .image_02 {
        width: 70%;
		padding-bottom: 40px;
    }
    #access .flex_block .image_01 {
        max-width: 260px;
        margin: 30px auto 0;
    }
#access .image_block .image_02 .note {
    flex-wrap: wrap;
    gap: 10px;
}
#access .image_block .image_02 .note .cap {
    font-size: 11px;
    padding-right: 0;
    line-height: 1.4;
    text-indent: -1em;
    padding-left: 1em;
}
#access .image_block .image_02 .note .icon_desc .icon_sharecycle {
    width: 15px;
}
#access .image_block .image_02 .note .icon_desc {
    font-size: 11px;
}
#access .image_block .ban {
    padding-bottom: 30px;
}
#access .image_block .ban_item {
    width: 90%;
}
#access .image_block .ban_item .ttl {
    font-size: 14px;
    margin-bottom: 0;
}
#access .image_block .ban_item a .logo_ticket {
    max-width: 260px;
}
#access .image_block .ban_item a .logo_sharecycle {
    max-width: 180px;
}
#link .title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}  
}
    









@media screen and (min-width: 1440px){
#main .top_area .movie_box {
    z-index: 1;
    margin: 0 calc(50% - 50vw);
        width: 56vw;
   /* right: -130px;
    max-width: 740px;
    margin: auto;*/
    }
/*.movie_wrapper .inbox {
    border-radius: 30px;
}  */
#main .top_area .logo_box {
    width: 350px;
    left: 7%;
    padding-top: 85px;
    }
#main .border_vertical_t_main{
    height: 109%;
}
#main .map_area {
    background-size: 100% 970px;
    padding: 120px 0 40px 0;
    }
#main .top_area .nav_box {
    padding-top: 55px;
}

#event {
    background-size:100% 1000px;
}
#emigration {
    background-size: 100% 680px;
}

    
    
#visit .contents_area_01 .spot_block {
    background: linear-gradient(90deg, #c1c14c57 74%, #ffffff00 0%);
}
#visit .contents_area_02 .spot_block {
    background: linear-gradient(90deg, #ffffff00 18%, #c1c14c57 0%);
}
#visit .contents_area_01 .gourmet_block {
    background: linear-gradient(90deg, #ffffff00 18%, #ffffff8a 0%);
}
#visit .contents_area_02 .gourmet_block {
    background: linear-gradient(90deg, #ffffff8a 74%, #ffffff00 0%);
}
}
  
@media screen and (min-width: 1600px){
  #main .top_area .movie_box {
    width: 55vw; 
    } 
}

@media screen and (min-width: 1800px){
  #main .top_area .movie_box {
    width: 50vw; 
    } 
}

