a{text-decoration: none;display: block;}
/*switchの形状*/
.switch{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    /* padding: 0 20px 20px; */
    /* position: sticky; */
    /* top: 0;
    z-index: 10; */
    margin: 0 auto;
    padding: 0;
}
.switch li {
    vertical-align: bottom;
    margin: 0;
    display: block;
	padding:0;
    margin-top: auto;
}
.switch li a{
    color: #000;
    border-radius: 8px 8px 0 0;
    border: 1px solid #DBEAEA;
    background: #FFF;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 9px 16px;
}

/*liにactiveクラスがついた時の形状*/
.switch li.active a {
    border-radius: 8px 8px 0 0;
    border: 1px solid #DBEAEA;
    background: #DBEAEA;
    box-shadow: -1px 0 0 0 #DBEAEA inset, 1px 0 0 0 #DBEAEA inset;
    color: #000;
    font-weight: 700;
    font-size: 16px !important;
}
.switch li.active {
    /* padding-top: 0px; */
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 0s;
    animation-fill-mode: forwards;
}
#ex .switch li a{
    font-size: 12px;
}

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

.area {
    /*はじめは非表示*/
    visibility: hidden;
    height: 0;
	opacity: 0;/*透過0*/
    padding-top: 0;
    background: #DBEAEA;

    overflow: hidden;
}
.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);
    }
}
.switch-group-container{
    position: relative;
    z-index: 70;
}
.switch-group-container + .switch-group-container{
    margin-top: 50px;
}

.tabcontbtn{
    /* max-width: 300px; */
    width: 85%;
    position: absolute;
    text-align: center;
    left: 50%;
    transform: translateY(0%) translateX(-50%);
    -webkit-transform: translateY(0%) translateX(-50%);
}

.tabcontbtn_e{
    /* max-width: 300px; */
    width: 85%;
    margin: 0 auto;
    position: relative;
    text-align: center;
    padding-bottom: 20px;
}
