a{text-decoration: none;display: block;}
/*tabの形状*/
.tab{
	/* display: flex;
    flex-wrap: wrap; */
    /* justify-content: center; */
    list-style: none;
    margin: 0;
    /* padding: 0 20px 20px; */
    /* position: sticky; */
    /* top: 0;
    z-index: 10; */
}
.tab li {
    vertical-align: bottom;
    /* padding: 5px 0; */
    /* width: calc(33.23% - 40px); */
    /* border-radius: 7px 7px 0 0; */
    /* border-radius: 7px; */
    margin: 0;
    display: block;
	/* background:#D8D8D8; */
	padding:0;
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
	color: #fff;
    background: #939393;
    border: 2px solid #939393;
}
.tab li.active {
    /* padding-top: 0px; */
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 0s;
    animation-fill-mode: forwards;
}


/*エリアの表示非表示と形状*/

.area {
    /*はじめは非表示*/
    visibility: hidden;
    height: 0;
	opacity: 0;/*透過0*/
    padding-top: 0;
}
.flex{
    display: flex;
    flex-direction: row;
}
.flex div {
    width: 33%;
    display: flex;
    align-items: center;
    align-content: space-around;
}

/*areaにis-activeというクラスがついた時の形状*/
.is-active {
    /*表示*/
    /* display: block; */
    visibility: visible;
	height: auto;
    /*ふわっと表示させるためのアニメーション*/
    animation-name: displayAnime;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    overflow: hidden;
}
#outdoor .area__contents{
    /* opacity: 0; */
    width: 100%;
    height: 100%;
    text-align: center;
    /* width: 100%;
    height: 100%; */
}
.area p{
    font-size: 12px;
    /* font-weight: bold; */
    /* color: #fff; */
    margin-bottom: 40px;
}
#outdoor.is-active .area__contents{
    /*表示*/
    display: block;
    /*ふわっと表示させるためのアニメーション*/
    animation-name: bottom-up;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}
.area__img{
    width: 100%;
    max-width: 220px;
    /* margin: auto; */
    display: flex;
    align-items: center;
    align-content: space-around;
}
#outdoor.is-active .area__img{
    animation-name: zoom-in;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes bottom-up{
    0%{
        transform: translateY(20%);
        opacity: 0;
    }
    100%{
        transform: translateY(0%);
        opacity: 1;
    }
}

.btn{
    width: 280px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50px;
    background: #72AAF0;
    font-size: 20px;
    line-height: 40px;

    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    display: block;
    outline: none;
    text-align: center;
    margin: 40px auto;
}
.btn:hover{
    /* width: 280px;
    height: 40px;

    border-radius: 20px;
    background: #fff; */
}
.btn::after{
    content: "";
}
.btn span{
    position: relative;
    z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color:#fff;
}

.btn:hover span{
    color:#72AAF0;
}

/*== 背景が流れる（左から右） */
.bgleft::before {
    content: '';
      /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
      /*色や形状*/
    background:#fff;/*背景色*/
    width: 100%;
    height: 100%;
      /*アニメーション*/
    transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: left top;
  }

  /*hoverした際の形状*/
  .bgleft:hover:before{
    transform-origin:left top;
    transform:scale(1, 1);
  }
@keyframes slide-button{
    0%{
        transform: scale(0);
    }
    100%{
        transform: scale(1);
    }
}
@keyframes zoom-in{
    0%{
        transform: scale(0);
    }
    100%{
        transform: scale(1);
    }
}
@keyframes zoom-out{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(0);
    }
}

.leaflet-popup-content a:first-of-type {
    margin-top: 12px;
}
.leaflet-container a {
    margin: 6px 0;
}
.leaflet-popup-content .map_line {
    background: #fff;
    border: solid #00C950 2px;
    border-radius: 6px;
    padding: 4px;
    margin-top: 8px;
    color: #00C950;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}
.leaflet-popup-content .map_app {
    background: #C24B4B;
    border: solid #C24B4B 2px;
    border-radius: 6px;
    padding: 4px;
    margin-top: 8px;
    color: #fff;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}
.leaflet-container .lineLink {
    background: ;
}

.leaflet-popup-content {
    font-size: 16px !important;
}
.leaflet-popup-content b {
    font-size: 20px !important;
}

