@charset "UTF-8";

/*
リンク画像ロールオーバー半透明
--------------------------------*/
a:hover{
    opacity:0.5;
    -moz-opacity:0.5;
    filter:alpha(opacity = 50);
	transition: 0.75s
}



 /*▼ スクロール時 高さを除く  
@media(min-width:767px){
html{
    scroll-padding-top: 60px;
}    
} */ 

html { scroll-behavior: smooth;}


/*
ボディ文字、背景指定
--------------------------------*/
body{
    font-family: "Noto Sans JP", sans-serif , "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo;
}

/*--------------------------------
タブレット対応
--------------------------------*/

html, body{
  min-width:1200px;
}

@media screen and (max-width:767px){
 html, body{
    min-width:initial;
}
}



/*ヘッダー
--------------------------------*/
header{
    width: 100%;
}
.title_logo{
    width: 94%;
    height: 55px;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.wtcs_logo{
    width: 35vw;
    height: auto;
}
.pia_logo{
    width: 13vw;
    height: auto;
    margin-right: 40px;
}
.sub_title{
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #85b1dc;
    font-weight: 500;
    font-size: 3.4vw;
}
@media screen and (min-width:768px){
.title_logo{
    width: 1200px;
    height: 90px;
}
.sub_title{
    font-size: 18px;
    letter-spacing: 0.05em;
}
.wtcs_logo{
    width: 294px;
    height: auto;
}
.pia_logo{
    width: 97px;
    height: auto;
    margin-right: 0;
}
}   

/*グローバルメニュー
--------------------------------*/
/* メニュー全体囲み */
.gnav_sec{
	 width: 100%;
	 height: auto;
	 padding: 0;
    margin: 0;
	 z-index: 100;
    top: 0;
    left: 0;
}
/*@media(min-width:767px){
.gnav_sec{
	height: 50px;
    background-color: rgba(84,27,133,0.9);
}
}*/


/* ハンバーガーメニュー
--------------------------------*/
/* チェックボックスを非表示 */
.drawer_hidden {
  display: none;
}
/* ハンバーガー設置位置 */
.drawer_open {
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 5px;
	right: 5px;
	z-index: 100;
	cursor: pointer;
	border-radius: 8px;
    /*background-color: rgba(84,27,133,0.9);*/
}
/* ハンバーガーアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 2px;
  width: 26px;
  background: #aaa;
  transition: 0.5s;
  position: absolute;
}
/* 三本線の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}
.drawer_open span:after {
  top: 8px;
}
/* アイコン×回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
	background: #541b85;
}
#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
	background: #541b85;
}
#drawer_input:checked ~ .drawer_open{
	background: #fff;
	background-position: center bottom 5px;
        mix-blend-mode: normal;
}
/* 中央線を透明 */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* ハンバーガーメニュー開いた画面*/
.nav_content {
	width: 100%;
	height: 100vh;/* メニューの高さ */
	position: fixed;
	top: -120%;
	left: 0; /* メニューを画面の外に飛ばす */
	z-index: 99;
	background: rgba(0,81,136,0.7);
	transition: .4s;
	text-align: center;
	padding-top: 12vh;
    margin-top: 0;
	overflow: hidden;
}
/* PC時*/
@media(min-width:767px){
.nav_content {
	width: 1200px;
	height: 40px;
    margin: 0 auto;
    padding: 0;
	position: relative;
	top: auto;
	left: auto;
	background: none;
	overflow:visible;
}
}
/* メニューのスタイル */
.nav_list {
	list-style: none;
	width: 90%;
	margin: 0 5%;
}
.nav_list > li{
	padding: 0.6em 0;
	position: relative;
}
.nav_list li a{
    font-size: 5.5vw;
    font-weight: 500;
	display: block;
    color: #fff;
    text-decoration: none;
}
.nav_list li ul{
	padding-top: 0.3em;
}
.nav_list li li{
	padding: 0.3em 0;
    line-height: 1.4;
}
.nav_list li li a{
    font-size: 4vw;
    font-weight: bold;
	display: block;
    color: #fff;
}
    
/* メニュー表示 */
#drawer_input:checked ~ .nav_content {
  top: 0;/* メニューを画面に入れる 下の位置 */
}
/* ハンバーガーメニューPC時非表示 */
@media(min-width:767px){
.drawer_open {
  display: none;
}
}
/* PC時 ドロップメニュー */
@media(min-width:767px){
.nav_content {
    width: 100%;
    background: #005188;
}
.nav_content .nav_list {
    display: flex;
    height: auto;
    margin: 0 auto;
    max-width: 1000px;
    padding: 0;
}
.nav_content .nav_list > li {/*幅25%*/
    width: 25%;
    font-feature-settings: "palt";
}
.nav_content .nav_list li {
    list-style: none;
    position: relative;
}
.nav_content .nav_list li a {
    font-size: 15px;
    background: #005188;
    color: #fff;
    display: block;
    height: auto;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 0;
    margin: 0;
}
.nav_content .nav_list li a:hover {
    color: #52adf5;
}
/*子階層*/
.nav_content .nav_list li ul {
    margin-top: 0;
}
.nav_content .nav_list li li {
    height: 0;
    overflow: hidden;
    transition: .5s;
    padding: 0;
}
.nav_content .nav_list li li a {
    border-top: 1px solid #eee;
    font-weight: normal;
    height: 4rem;
    line-height: 4rem;
}
.nav_content .nav_list li:hover > ul > li {
    height: 4rem;
    overflow: visible;
}
.nav_content .a_events_none{
pointer-events: none;
}
}    


/*
スライド大きさ
--------------------------------*/
.main_slide{
    width: 100%;
    position: relative;
    margin-top: 10px;
}
/*
Slick設定
--------------------------------*/

.slide-items {
    width: 1200px;
    height: auto;
    margin: auto;
}

.slide-items img {
  width: 100%;
  object-fit: cover;
}

@media(max-width:768px){
.slide-items {
    width: 100%;
    height: auto;
    margin: auto;
}
}    


/*
Slick　矢印
--------------------------------*/
.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    opacity: 1;/*デフォルトは.75が指定されている*/
}

.slick-prev {
    left: 520px;
    top: 240px;
    z-index: 1;
}

.slick-next {
    right: 510px;
    top: 240px;
    z-index: 1;
}
@media(max-width:768px){
.slick-prev {
    left: 30vw;
    top: 66vw;
    z-index: 1;
}

.slick-next {
    right: 27vw;
    top: 66vw;
    z-index: 1;
}
}

.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #999;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev:before {
    content: '←';
}

.slick-next:before {
    content: '→';
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}


/*
説明文
--------------------------------*/
.intro_wrap{
    width: 92%;
    margin: 60px auto 20px;
    color: #005188;
}
.intro_wrap h2{
    font-size: 9vw;
    font-weight: 900;
    line-height: 1.2;
}
.intro_wrap p{
    font-size: 4vw;
    font-weight: 300;
    margin: 1.4em auto;
    line-height: 1.6;
}
@media(min-width:767px){
.intro_wrap{
    margin: 70px auto 50px;
    text-align: center;
}
.intro_wrap h2{
    font-size: 56px;
}
.intro_wrap p{
    font-size: 18px;
}
}


/*
先出し情報
--------------------------------*/
.firstout_wrap{
    width: 92%;
    margin: auto;
}
.firstout_box{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.tx_date{
    background-color: #c6c6c6;
    text-align: center;
    padding: 10px;
    font-size: 6vw;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}
.tx_type{
    text-align: center;
    padding: 10px;
    font-size: 6vw;
    font-weight: 900;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 0.35em;
}
.firstout_box .tx{
    font-size: 4vw;   
    color: #fff;
    font-weight: 500;
    line-height: 1.6;
    padding: 14px 18px;
}
.firstout_box img{
    width: 100%;
    height: auto;
}
.club_color{/* YOKOHAMA club色 */
    background-color: #9fd4b8;
}
.community_color{/* YOKOHAMA community色 */
    background-color: #85b1dc;
}
.premium_color{/* YOKOHAMA premium色 */
    background-color: #005188;
}
@media(min-width:767px){
.firstout_wrap{
    width: 1130px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.firstout_box{
    width: 350px;
    height: 385px;
}
.tx_date{
    font-size: 30px;
}
.tx_type{
    font-size: 26px;
}
.firstout_box .tx{
    font-size: 16px;
    padding: 14px 20px;
    letter-spacing: 0.05em;
}
}


/*
詳細情報
--------------------------------*/

.details_wrap{
    width: 100%;
}
.details_box{
    width: 100%;
}
.details_wrap .inner{
    width: 92%;
    margin: auto;
    padding: 30px 0;
}
.top_wrap{
}
.tx_box{
}
.tx_box h1{
    font-size: 6.8vw;
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0;
}
.tx_box h1 span{
    font-size: 8vw;
    background-color: #fff;
    display: inline-block;
    text-align: center;
    padding-bottom: 0.05em;
    width: 1em;
    margin-right: 0.2em;
}

/* それぞれの色 */
.tx_box h1 .club{
    color: #9fd4b8;
}
.tx_box h1 .community{
    color: #85b1dc;
}
.tx_box h1 .premium{
    color: #005188;
}
.tx_box p{
    font-size: 4vw;
    font-weight: 500;
    color: #fff;
    line-height: 1.6;
    margin-top: 1em;
    margin-bottom: 1em;
}
.ph_box{
    width: 100%;
    background-color: #fff;
    padding: 10px
}
.ph_box img{
    width: 100%;
    height: auto;
}
.ph_box img:first-child {
    margin-bottom: 10px;
}

.details_box{
    
}
@media(min-width:767px){
.details_wrap{
}
.details_wrap .inner{
    width: 1100px;
}
.top_wrap{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.tx_box{
    width: 750px;
}
.tx_box h1{
    font-size: 50px;
}
.tx_box h1 span{
    font-size: 49px;
}
.tx_box p{
    font-size: 18px;
}
.ph_box{
    width: 320px;
    height: auto;
    display: flex;
    justify-content: space-between;
}
.ph_box img{
    width: 300px;
    height: 200px;
}
.ph_box img:first-child {
    margin-bottom: 0;
}
}



/*
アコーディオン
--------------------------------*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	display: block;
	color: #fff;
    padding: 0.4em 0.4em 0.4em 2.5em;
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 1em;
	height: 1em;
    padding: 1em;
    position: absolute;
    top:0;
    left: 0;
	background:#fff;
}
.Label::after{		/*タイトル横の矢印*/
	content:"";
	width: 8px;
	height: 8px;
	border-top: 3px solid #aaa;
	border-right: 3px solid #aaa;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 4px );
	left: 0.8em;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
    margin-top: 10px;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
    background-color: #fff;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:30px ;
	transition: all .3s;
}
.toggle:checked + .Label::after {
	transform: rotate(-45deg) !important;
}


/*
ツアー説明
--------------------------------*/
.data_wrap{
    font-weight: 300;
    line-height: 1.6;
    font-size: 4vw;
}
.data_list{
    
}
.data_list .detail_box{
    margin-bottom: 30px;
}
.data_list .detail_box h2{
    font-size: 4vw;
    line-height: 1.3;
    padding: 0.6em 0;
    font-weight: 400;
    color: #fff;
    text-align: center;
    background-color: #b5b5b6;
}
.data_list .detail_box p{
    margin-top: 0.5em;
}

    
.data_list .icon_01{
    padding-left: 50px;
    background-size: 40px;
    margin-bottom: 1.5em;
    background-image: url(../img/icon_club_01.png);
    background-repeat: no-repeat;
}
.data_list .icon_02{
    padding-left: 50px;
    background-size: 40px;
    margin-bottom: 1.5em;
    background-image: url(../img/icon_club_02.png);
    background-repeat: no-repeat;
}
.data_list .icon_03{
    padding-left: 50px;
    background-size: 40px;
    margin-bottom: 1.5em;
    background-image: url(../img/icon_club_03.png);
    background-repeat: no-repeat;
}
.data_list .icon_04{
    padding-left: 50px;
    background-size: 40px;
    margin-bottom: 1.5em;
    background-image: url(../img/icon_club_04.png);
    background-repeat: no-repeat;
}
.data_list .icon_05{
    padding-left: 50px;
    background-size: 40px;
    margin-bottom: 1.5em;
    background-image: url(../img/icon_club_05.png);
    background-repeat: no-repeat;
}
/* コミュニティーアイコン */
.data_list .icon_comm_01{
    background-image: url(../img/icon_comm_01.png);
}
.data_list .icon_comm_02{
    background-image: url(../img/icon_comm_02.png);
}
.data_list .icon_comm_03{
    background-image: url(../img/icon_comm_03.png);
}
.data_list .icon_comm_04{
    background-image: url(../img/icon_comm_04.png);
}
.data_list .icon_comm_05{
    background-image: url(../img/icon_comm_05.png);
}
/* プレミアムアイコン */
.data_list .icon_prem_01{
    background-image: url(../img/icon_prem_01.png);
}
.data_list .icon_prem_02{
    background-image: url(../img/icon_prem_02.png);
}
.data_list .icon_prem_03{
    background-image: url(../img/icon_prem_03.png);
}
.data_list .icon_prem_04{
    background-image: url(../img/icon_prem_04.png);
}
.data_list .icon_prem_05{
    background-image: url(../img/icon_prem_05.png);
}


.details_wrap .tx_notes{
    font-size: 3.8vw;
    font-weight: 500;
    line-height: 1.6;
}
.details_wrap .tx_notes a{
    color: #52adf5;
}

@media(min-width:767px){
.data_wrap{
    font-size: 16px;
}
.data_list{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.data_list .detail_box{
    width: 300px;
    margin-right: 70px;
}
.data_list .detail_box:nth-child(3n) {
	margin-right: 0;
}
    
.data_list .detail_box h2{
    font-size: 17px;
}   
.data_list .detail_box p{
}
    
.data_list .icon_01{
    padding-left: 65px;
    background-size: 50px;
}
.data_list .icon_02{
    padding-left: 65px;
    background-size: 50px;
}
.data_list .icon_03{
    padding-left: 65px;
    background-size: 50px;
}
.data_list .icon_04{
    padding-left: 65px;
    background-size: 50px;
}
.data_list .icon_05{
    padding-left: 65px;
    background-size: 50px;
}
.details_wrap .tx_notes{
    font-size: 16px;
    text-align: right;
}
}   
    

/*
お申し込みボタン
--------------------------------*/
.btn_signup {
	display: block;
	text-align: center;
	vertical-align: middle;
    font-size: 4.8vw;
	width: 50vw;
	padding: 0.75em;
	font-weight: 600;
	border: 2px solid #c6c6c6;
	color: #898989;
	transition: 0.5s;
    margin: 20px auto;
}
.btn_signup:hover {
	color: #52adf5;
	border: 2px solid #52adf5;
}
@media(min-width:767px){
.btn_signup {
	width: 200px;
    font-size: 18px;
}
}


/*
表
--------------------------------*/
.table_sec{
    width: 100%;
    margin: 40px auto;
    overflow-x:scroll;
}
.list{
    width: 100%;
    margin: auto;
    font-size: 4vw;
}
.list th,td{
    width: 300px;
    padding: 0.4em 1em;
    line-height: 1.4;
    border-bottom: solid 1px #c6c6c6;
    text-align: center;
    vertical-align: middle;
    font-weight: 300;
    white-space: nowrap;
    font-size: 3.6vw;
}

.list .gray_cell{
    color: #fff;
    background-color: #898989;
    border: solid 1px #fff;
    text-align: left;
    font-weight: 400;
    white-space: nowrap;
}

.table_sec .cell_club{
    font-weight: 700;
    color: #fff;
    background-color: #9fd4b8;
    border-bottom: none;
}
.table_sec .cell_comm{
    font-weight: 700;
    color: #fff;
    background-color: #85b1dc;
    border-bottom: none;
}
.table_sec .cell_prem{
    font-weight: 700;
    color: #fff;
    background-color: #005188;
    border-bottom: none;
}
.table_sec .cell_club_light{
    background-color: #f5fbf8;
    border-bottom: none;
    text-align: left;
}
.table_sec .cell_comm_light{
    background-color: #f3f7fb;
    border-bottom: none;
    text-align: left;
}
.table_sec .cell_prem_light{
    background-color: #e5eef3;
    border-bottom: none;
    text-align: left;
}
.table_sec .border_none{
    border: none;
}
.table_sec p{
    font-weight: 300;
}
@media(min-width:767px){
.table_sec{
    width: 1100px;
    overflow-x: visible;
}
.list{
    width: 1100px;
    margin: auto;
}
.list th,td{
    width: 275px;
    padding: 0.8em 1em;
    font-size: 15px;
    white-space: normal;
}
.list .gray_cell{
    white-space: normal;
}
.table_sec .cell_club_light{
    white-space: normal;  
}
.table_sec .cell_comm_light{
    white-space: normal;  
}
.table_sec .cell_prem_light{
    white-space: normal;  
}
}


/*
注釈
--------------------------------*/
.exp_sec{
    width: 92%;
    margin: 30px auto;
}
.exp_sec h3{
    font-size: 3.6vw;
    font-weight: 300;
    line-height: 1.7;
}
.exp_sec ul{
    font-size: 3.6vw;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1em;
    list-style-type: disc;
    padding-left: 1em;
}
.exp_sec .dot_none{
    list-style-type: none;
   padding-left: 0;
}

@media(min-width:767px){
.exp_sec{
    width: 1100px;
}
.exp_sec h3{
    font-size: 15px;
}
.exp_sec ul{
    font-size: 15px;
}
}



/*
個人情報の取り扱いについて
--------------------------------*/
.btn_privacy {
	display: block;
	text-align: center;
	vertical-align: middle;
    font-size: 4.8vw;
	width: 80vw;
	padding: 0.75em 0;
	font-weight: 600;
	border: 2px solid #c6c6c6;
	color: #898989;
	transition: 0.5s;
    margin: 40px auto;
}
.btn_privacy:hover {
	color: #52adf5;
	border: 2px solid #52adf5;
}
@media(min-width:767px){
.btn_privacy {
	width: 300px;
    font-size: 18px;
}
}



/*
フッター
--------------------------------*/
footer{
    width: 100%;
    background-color: #52adf5;
    text-align: center;
    padding: 1.2em;
}
footer p{
    font-size: 3.6vw;
    font-weight: 300;
    line-height: 1.6;
    color: #fff;
}
footer a{
    font-weight: 900;
}
@media(min-width:767px){
footer p{
    font-size: 15px;
}
}

footer .border{
    width: 100%;
    display: inline-block;
    border-bottom:solid 1px #fff;
    padding-bottom: 0.3em;
    margin: 0.5em auto;
}
@media(min-width:767px){
footer .border{
    width: 620px;
}
}


/*
文字色、装飾
--------------------------------*/
.tx_pink{color: #e88a95!important;}
.tx_green {color: #009933!important;}
.tx_orange {color: #FF6633!important;}
.tx_red {color: #FF0000!important;}
.tx_bold {font-weight: bold!important;}

.tx_underline{
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tx_center{text-align: center;}

.tx12 {font-size: 12px!important;}
.tx16 {font-size: 16px!important;}
.tx18 {font-size: 18px!important;}
.tx20 {font-size: 20px!important;}

/*
マージン
--------------------------------*/
.mt5 {margin-top: 5px!important;}
.mt10 {margin-top: 10px!important;}
.mt15 {margin-top: 15px!important;}
.mt20 {margin-top: 20px!important;}
.mt22 {margin-top: 22px!important;}
.mt25 {margin-top: 25px!important;}
.mt30 {margin-top: 30px!important;}
.mt35 {margin-top: 35px!important;}
.mt40 {margin-top: 40px!important;}
.mt50 {margin-top: 50px!important;}
.mt60 {margin-top: 60px!important;}
.mt70 {margin-top: 70px!important;}
.mt80 {margin-top: 80px!important;}
.mt90 {margin-top: 90px!important;}
.mt100 {margin-top: 100px!important;}

.mb5 {margin-bottom: 5px!important;}
.mb10 {margin-bottom: 10px!important;}
.mb15 {margin-bottom: 15px!important;}
.mb20 {margin-bottom: 20px!important;}
.mb25 {margin-bottom: 25px!important;}
.mb30 {margin-bottom: 30px!important;}
.mb35 {margin-bottom: 35px!important;}
.mb40 {margin-bottom: 40px!important;}



/*
PC、SP切り替え
--------------------------------*/
.sp{display: block;}
.pc{display: none;}
@media(min-width:767px){
.sp{display: none;}
.pc{display: block;}
}




