@charset "UTF-8";

figure{
    margin: 0;
}
.flex-box{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
}

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

タブ01

------------------------------*/
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
    display: none;
}
/*選択されているタブのコンテンツのみを表示*/
.tab_content{
    display: none;
}
#spot:checked ~ #spot_content,
#map:checked ~ #map_content{
    display: block;
}

.tab_item{
    width: 270px;
    display: inline-block;
    
    background-color: #b2c7cc;
    color: #e6ebec;
    font-size: 18px;
    letter-spacing: .03em;
    
    padding: 12px;
    cursor: pointer;
    transition: all 300ms 0s ease;
}
/*選択されているタブのスタイルを変える*/
.sightseeing input:checked + .tab_item {
    background-color: #e6ebec;
    color: #595757;
}

.tab_content{
    background: #e6ebec;
    padding: 50px 0;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .tab_item{
        width: 50%;
        float: left;
        font-size: 14px;
    }
    .tab_content{
        clear: both;
        padding: 30px 0;
    }
}


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

タブ02

------------------------------*/
.category {
    width: 100%;
    max-width: 650px;
    background-color: #fff;
    border: solid 1px #e5e5e5;
    
    margin: 0 auto 40px;
    padding: 10px;
    font-size: 12px;
    border-radius: 4px;
    justify-content: center;
}
.category li {
    color: #bcbcbc;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 300ms 0s ease;
}
.category li:after {
    content: "/";
    font-size: 8px;
    margin: 0 10px;
}
.category li:last-child:after{
    display: none;
}
.category li:hover{
    opacity: .6;
}
.category li.active {
    color: #494949;
}


/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.category{
		width: 90%;
    	line-height: 2;
	}
}


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

スポットから探す

------------------------------*/
.ChangeElem_Panel .flex-box{
    margin-right: -20px;
    align-items: baseline;
}
.ChangeElem_Panel .flex-box .item{
    width: 25%;
    text-align: left;
    font-size: 12px;
    
    margin-bottom: 50px;
    padding-right: 20px;
}
.ChangeElem_Panel .flex-box .item figcaption{
    margin-top: 10px;
}
.ChangeElem_Panel .flex-box .item figcaption p{
    margin-bottom: 5px;
}
.ChangeElem_Panel .flex-box .item .name{
    font-size: 16px;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .ChangeElem_Panel .flex-box .item{
        width: 50%;
    }
    .ChangeElem_Panel .flex-box .item .name{
        font-size: 14px;
    }
}


/*---戦国大名---*/
.ChangeElem_Panel.col2 .flex-box{
    margin: 0 auto;
    align-items: normal;
}
.ChangeElem_Panel.col2 .flex-box .item{
    width: 50%;
}
.box-movie .inner{
    height: 100%;
    background: #fff;
    padding: 20px;
}
.box-movie h4{
    font-size: 16px;
    margin-bottom: 15px;
}
.box-movie figure{
    margin-bottom: 30px;
}
.box-movie .youtube{
    width: 100%;
    padding-bottom: 56.25%;
    height: 0px;
    position: relative;
    margin: 0 auto;
}
.box-movie .youtube iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .ChangeElem_Panel.col2 .item.box-list,
    .ChangeElem_Panel.col2 .item.box-movie{
        margin-right: -20px;
        margin-left: 0;
        padding-right: 0;
    }
    .ChangeElem_Panel.col2 .item.box-list{
        width: auto;
    }
    .ChangeElem_Panel.col2 .item.box-movie{
        width: 100%;
    }
}


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

地図から探す

------------------------------*/
.googlemap{
    width: 85%;
    max-width: 988px;  
    overflow: hidden;
    margin: 40px auto;
}
.googlemap iframe{
    width: 100%;
    margin-top: -46px;
    border: none;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){

}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){

}
