@charset "utf-8";
/* CSS Document */

/*googlefonts*/

/*Adobefonts*/
@import url("https://use.typekit.net/xsx3ylc.css");
/*
Effra
font-family: effra, sans-serif;
font-weight: 700;
font-style: normal;

Ministry
font-family: ministry, sans-serif;
font-weight: 500;
font-style: normal;
*/

/*================================
目次
================================

■FSの設定打消し
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.イントロダクション
5.アイテム
6.プロフィール
7.フッター

*/

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■FSの設定打消し
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fs-l-main *{
	min-width: initial;
    min-width: auto;
    min-height: initial;
    min-height: auto;
}

/*メインエリアの横幅制限解除ここから*/
.fs-l-pageMain {
	max-width: 100%;
}

.fs-l-main{
	max-width: 100%;
	padding:0;
	margin:0;
}
/*メインエリアの横幅制限解除ここまで*/


.fs-c-breadcrumb{
	padding-top:80px;
}
@media screen and (max-width:768px) {
	.fs-c-breadcrumb{
		padding-top:80px;
	}
}

/* 「現在登録されている商品はありません。」を非表示 */
.fs-c-noResultMessage { display: none }

/* 文字サイズ調整 */
.fs-l-main{
	font-size:1.1em;
}

/*共通フッターのマージン調整*/
.footer-sp{
	margin-top: 0 !important;
}

/*自動生成商品エリアのマージンゼロ/余白が発生するため*/
.fs-c-productList{
	margin:0;
}

/*パンくずリスト調整*/
/*.fs-c-breadcrumb{
	padding-top:0;
	background-color: #191919;
	color:#5C5C5C;
}
.fs-c-breadcrumb a{
	color:#5C5C5C;
}
main, .fs-c-breadcrumb__list{
	color:#5C5C5C;
}*/

/*TOPへボタン消す*/
.footer__pagetop{
	display: none!important;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*例：brタグにclassを追加
PCのみで改行→pc <br class="pc">
SPのみで改行→sp <br class="sp">
※両方共通の改行の場合は<br>のみでOK

他、PCとSPで表示を分けたい部分にも使用可能
*/

@media screen and (min-width: 768px){   
  .pc { display:block; }
  .sp { display:none; }
}
@media screen and (max-width: 768px){   
  .pc { display:none; }
  .sp { display:block; }
}



/*================================
1.全体
================================*/

body{
/*背景色*/
	background-color: #ffeded;
}

/*背景画像：PCのみ*/
@media screen and (min-width:769px) {
	body{
		background-image: url(https://www.joint-space.co.jp/category_common/mimitoujours/mtj_fleamarket/img/back_logo.png);
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-position: 50px 50px;
		background-size:400px;
	}
}


/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	font-size:12px;
	line-height: 2;
	letter-spacing: 0.1em;
	font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
	font-weight: 300;
	color:#000;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#000;
}
.js-main a:hover,a:hover img{
	opacity:0.6;
    -moz-opacity:0.6;
    filter:alpha(opacity = 60);
}


/*widthなどの適応範囲をborder基準に変更*/
.js-main *, .js-main *:before, .js-main *:after{
	-webkit-box-sizing: border-box; /* Webkit */
	-moz-box-sizing: border-box; /* Firefox */
	box-sizing: border-box; /* 標準 */
}


/*SP版画像サイズ制御*/
@media screen and (max-width:768px) {
    /*　画面サイズが768px以下の時はここを読み込む　*/
	.js-main img{
	width:100%;
	height: auto;
	}
}

/*PC1200px、SP95%*/
.js-container{
	width:1200px;
	max-width:95%;
	margin:auto;
}

/*コンテンツ部分の背景色*/
.main-background{
	background-color: #fff;
}

/*フッターの色調整*/
/*#footer.second-page .footer-sp{
	background-color: #191919;
}
.second-page .footer__follow{
	background-color: #191919;
}*/


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
2.共通フォーマット（ボタンデザインなど）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ボタン*/
.button019 a {
    background: #fff;
    /*border-radius: 3px;*/
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #000;
    transition: 0.3s ease-in-out;
    /*font-weight: 500;*/
	border:solid 1px #000;
}
.button019 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button019 a:hover {
  background: #000;
  color: #FFF;
  opacity: 1;
}
.button019 a:hover:after {
  right: 1.4rem;
}


/*フォント*/
.font01{/*Effra*/
	font-family: effra, sans-serif;
	font-weight: 700;
	font-style: normal;
}
.font02{/*Ministry*/
	font-family: ministry, sans-serif;
	font-weight: 500;
	font-style: normal;
}



/*文字色*/
/*白*/
.font_color01{
	color:#fff;
}


/*背景色*/
.bgcolor01{ /*ピンク*/
	background-color: #f5bfd6;
}
.bgcolor02{ /*水色*/
	background-color: #5db6e7;
}
/* color_ver2（青とピンク反転ver）*/
.color_ver2 .bgcolor01 { /*水色*/
	background-color: #5db6e7;
}
.color_ver2 .bgcolor02 { /*ピンク*/
	background-color: #f5bfd6;
}




/*共通マージン設定*/
.main-margin{
	margin-top:80px;
	margin-bottom:80px;
}


/*タイトル*/
.contents-title{
	margin-bottom:2em;
}
.contents-title_t01{
	font-size:2em;
	letter-spacing: 0.2em;
}
.contents-title_t02{
	margin-top:-0.5em;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.コンテンツ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-wrapper{
	background-color: #fff;
	
}
/*PC*/
@media (min-width: 769px) {
	.contents-wrapper{
		margin: 30px 20% auto 30px;
		margin-right:20%;
		margin-left:auto;
		width: 400px;
		border-radius: 10px;
	}
}
/*SP*/
@media (max-width: 768px) {
	.contents-wrapper{
		margin-top:0;
		width:100%;
	}
}



/*メインビジュアル*/
.contents-mainvisual{
	line-height: 0;
	
}
.contents-mainvisual img{
	width:100%;
}
@media (min-width: 769px) {
	.contents-mainvisual img{
		border-radius: 10px 10px 0 0;
	}
}


/*スケジュール*/
.contents-box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの寄せ*/
	justify-content: center;
	align-items: stretch;
	
	border: 1px solid #000;
	width:90%;
	margin:auto auto 1.5em;
	text-align: left;
}
.contents-in > div:last-child{
	margin-bottom:0;
}
.contents-box_item01{
	width:50%;
	padding:30px 10px;
}
.contents-box_item02{
	width:50%;
	padding:30px 10px;
	background-color: #fff;
	
	line-height: 1.4;
}

.contents-box_item01,.contents-box_item02 {
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの寄せ*/
	justify-content: flex-start;
	align-items: center;
}
.contents-box_item01 .inbox,
.contents-box_item02 .inbox {
	width:100%;
}


/*文字調整*/
.contents-box_item01 .text01 {
	line-height: 1.2;
}
.contents-box_item01 .text02 {
	font-size:4em;
	overflow-wrap: break-word;
	line-height: 0.9;
	letter-spacing: -0.02em;
}
.contents-box_item01 .text03 {
	font-size:0.5em;
}

.contents-box_item02 .text01 {
	font-size:1.7em;
}
.contents-box_item02 .text02 {
	margin-bottom:0.7em;
}
.contents-box_item02 .text03 {
	margin-bottom:1em;
}

/*アーカイブ*/
#contents-archive .contents-in{
	opacity: 0.4;/*半透明に*/
}


/*アバウト*/
.contents-about{
	
}
.contents-about_text01{
	margin-top:2em;
	font-weight:700;
	font-size:1.2em;
}
.contents-about_text02{
	color:#a6a6a6;
	margin-top:7em;
	font-size:0.5em;
	font-weight:500;
}



/*～～～～～イベント別用～～～～～*/

.contents-upper{
	margin-top:0;
}

/*メニュー*/
.contents-menu_box{
	width:90%;
	margin:auto;
}

/*リンクエリア：フレックスボックス*/
.contents-menu_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: flex-start;
}
.contents-menu_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 10px ) / 2 );
	margin-right: 10px;
	margin-bottom:10px;
}
/*右端のマージンをゼロ設定*/
.contents-menu_box > div:nth-child( 2n ),
.contents-menu_box > div:last-child{
	margin-right: 0;
}
.contents-menu_box > div:nth-last-child(-n+2){
	margin-bottom: 30px;
}
@media (max-width: 768px) {
	.contents-menu_box{
		
	}
}

/*ボタンのスタイル変更*/
.contents-upper .button019 a{
	border-color: transparent;
	border-radius: 5px;
	font-size:1.2em;
}




/*開催概要*/
.contents-info{
}

.info_box{
	text-align: left;
	width:90%;
	margin:1.25em auto 0;
	font-weight:700;
	font-size:1.2em;
}
.info_head{
	background-color:#ececec;
	padding:3px 10px 2px;
	
}
.info_text{
	padding:10px;
}
.point_area{
	width:95%;
	margin: 1em auto;
	padding:4%;
	line-height:1.5;
	border-radius: 5px;
}




/*アクセス*/

.contents-access_map{
	width:85%;
	margin:auto;
}
.contents-access_text{
	width:85%;
	margin:2em auto;
	text-align: left;
}
.contents-access_text a{
	text-decoration: underline;
}



/*出店者リスト*/

/*リンクエリア：フレックスボックス*/
.contents-list_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: flex-start;
	
	width:80%;
	margin:auto;
}
.contents-list_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 20px ) / 2 );
	margin-right: 20px;
	margin-bottom:30px;
}
/*右端のマージンをゼロ設定*/
.contents-list_box > div:nth-child( 2n ),
.contents-list_box > div:last-child{
	margin-right: 0;
}
.contents-list_box > div:nth-last-child(-n+2){
	margin-bottom: 30px;
}
@media (max-width: 768px) {
	.contents-list_box{
		
	}
}

.list_img img{
	width:100%;
	border-radius: 50%;
}
.list_text{
	margin-top:1em;
}
.list_name{
	font-weight: 700;
	line-height:1;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-footer{
	text-align: center;
	padding-bottom:200px;
	margin:200px auto 0;
}

.contents-footer_logo{
	width:200px;
	max-width:70%;
	margin:0 auto 50px;
}
.contents-footer_logo img{
	width:100%;
}

.contents-footer_js{
	margin-top:5em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
9.応募フォームボタン
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-form_btn{
	position:fixed;
	left:50px;
	bottom:50px;
	
	width:200px;
	max-width:30%;
}
.contents-form_btn img{
	width:100%;
}
@media (max-width: 768px) {
	.contents-form_btn{
		left:20px;
		bottom:20px;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.フェードインエフェクト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fadein-top {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.delighters：スクロールアニメーション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*animation-左からぬっと出てくる*/
/* 基本のスタイル */
.animation.delighter {
	  transition: all .8s ease-out;
      transform: translateX(-100%);
      opacity: 0;
   }
 
/* スタート時のスタイル */
   .animation.delighter.started {
      transform:none;
	  opacity:1;
   }
 
/* エンド時のスタイル */
   .animation.delighter.started.ended {
      
   }


/*animation02-ふわっと出現*/
/* 基本のスタイル */
.animation02.delighter {
	  transition: all .8s ease-out;
      transform: translateX(0%);
      opacity: 0;
   }
 
/* スタート時のスタイル */
   .animation02.delighter.started {
      transform:none;
	  opacity:1;
   }
 
/* エンド時のスタイル */
   .animation02.delighter.started.ended {
      
   }

