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

/*googlefonts*/

/*Adobefonts*/
@import url("https://use.typekit.net/vom4xaw.css");
/*
font-family: sketchnote-text,sans-serif;
font-weight: 700;
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;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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: -webkit-linear-gradient(#9df7e5, #37cb84);
	background: -o-linear-gradient(#9df7e5, #37cb84);
	background: linear-gradient(#9df7e5, #37cb84);*/
}

body:after {/*グラデーション固定用　擬似要素をつくる*/
  position: fixed;/*固定配置*/
  top: 0; left: 0;/*左上に固定*/
  width: 100%; height: 100%;/*画面全体を覆う*/
  content: "";
  background: #d9eff1;/*保険用*/
    background: -moz-linear-gradient(top, #faf5f1 0%,#faf5f1 100%);/*古いFireFox向け*/
  background: -webkit-linear-gradient(top, #faf5f1 0%,#faf5f1 100%);/*古いSafari・Chrome向け*/
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#faf5f1', endColorstr='#faf5f1',GradientType=0 );/*IE9以下への対応*/
  background: linear-gradient(to bottom, #faf5f1 0%, #faf5f1 100%);/*正規のプロパティ*/
  z-index: -1;/*背景にするため*/
}


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

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#BF8A60;
}
.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; /* 標準 */
}


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

/*PC600px、SP100%*/
.js-container{
	width:600px;
	margin: auto;
	background-color: #fff;
}
@media screen and (max-width: 768px){   
	.js-container{
		width:100%;
	}
}
@media screen and (min-width: 769px){   
	.js-container{
		margin: 30px auto;
		border-radius: 20px;
	}
}


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

/*ボタン*/
.btn01{
  width:200px;
  padding: 0.8em 0 0.8em 0;
  font-size: 1.25em;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 1em auto;
  color: #fff;
  background-color: #282828;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;
	
  border: 1px solid #282828;
	
	font-family: futura-pt,sans-serif;
	font-weight: 600;
	font-style: normal;
}
.btn01:hover {
  background-color: transparent;
  border-color: #282828;
  color: #282828;
}


/*メインの余白の指定*/
.main-padding{
	padding-top:116px;
	padding-bottom:116px;
}
@media screen and (max-width: 768px){
	.main-padding{
		padding-top:5em;
		padding-bottom:5em;
	}
}


/*背景色*/
/*ベージュ*/
.bgcolor-01{
	background-color: #f6f1ed;
}
/*白*/
.bgcolor-02{
	background-color: #fff;
}
/*グリーン*/
.bgcolor-03{
	background-color: #ebf4df;
}





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
3.メインビジュアル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-visual{
	line-height: 0;
}

@media screen and (min-width: 769px){
	.main-visual,.main-visual img{
		border-radius: 15px 15px 0 0;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.本文
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*区切り：ウェーブ用*/
.wave-line_svg_wrap{
	transform: translateY(1px);/* ←ブラウザによって隙間ができるので入れている */
}
.wave-line_svg{
	margin-top:-1px;/* ←ブラウザによって隙間ができるので入れている */
	line-height: 0;/* ←ブラウザによって隙間ができるので入れている */
}

/*内容*/
.main-inline {
}



/*イントロ*/
.main-intro{
	
}
.main-intro img{
	width:70%;
}

.main-intro p{
	margin: 2em auto 0;
	width:80%;
	text-align: justify;
}


/*imageは6.imageにて*/


/*日程*/
.main-schedule{
	
}
.main_title{
	
}
.main_title img{
	height:50px;
	width:auto;
}

.date_container{
	margin-top:2em;
}
.date_head{
	display: inline-block;
	padding: 0.2em 1em ;
	background-color: #BF8A60;
	color:#fff;
	border-radius: 5px;
	line-height:1;
	margin-bottom:1em;
}
.date_in{
	font-size:1.5em;
	line-height: 1.4;
}
.date_notice{
	margin-top:3em;
	font-size:0.8em;
}



/*特典*/
.main-priority{
	
}
.priority_box{
	position: relative;
	width:85%;
	margin: 4em auto 0;
	padding:8%;
	background-color: #FCECBB;
	border-radius: 10px;
}
.priority_box .number{
	width:18%;
	position: absolute;
	left:-3%;
	top:-3%;
}
.priority_head{
	margin-bottom:1.5em;
	font-size:1.45em;
	line-height: 1.5;
}
.priority_img{
	margin: 0 auto 2em;
	width:80%;
}
.priority_txt{
	
}
.priority-item04 .priority_txt{
	margin-top:3em;
}
.priority_notice{
	margin-top:1em;
	font-size:0.8em;
}
/*04の見出し*/
.head-border {
    display: flex;
    align-items: center;
}
.head-border:before,
.head-border:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #666;
}
.head-border:before {
    margin-right: 1rem;
}
.head-border:after {
    margin-left: 1rem;
}


.bold-big{
	font-size:1.5em;
}
.color-red{
	color:#B7282C;
}
.notice{
	margin-top:1em;
	font-size:0.8em;
	line-height: 1.3;
}



/*emuemu*/
.main-emuemu{
	
}
.emuemu_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	align-items: flex-start;
	
	margin: 3em auto 2em;
	width:80%;
	/*border:1px solid #000000;*/
}
.emuemu_box_left{
	width:40%;
	padding-right:8%;
}
.emuemu_box_right{
	width:60%;
	
	background-color: #fff;
	border:1px solid #BF8A60;
	border-radius: 10px;
}
.emuemu_box_right img{
	border-radius: 10px;
}


.emuemu_img{
	
}
.emuemu_name{
	font-weight:400;
	font-size:1.5em;
	color:#BF8A60;
}

.emuemu_sns_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	align-items: flex-start;
}
.emuemu_sns_box_item{
	width:50%;
}
.emuemu_notice{
	margin-top:2em;
	font-size:0.8em;
	line-height:1.7;
}



/*場所*/
.main-place{
	
}
.place_wrapper{
	margin:3em auto 0;
	width:75%;
	padding:10%;
	border:1px solid #BF8A60;
	border-radius: 20px;
	background-color: #f8fbf4;
}
.place_t{
	font-size:1.5em;
	line-height:1.5;
}
.place_link{
	font-size:0.9em;
}
.place_address{
	margin-top:2em;
}
.place_access{
	line-height:1.7;
	margin-top:1.5em;
	font-size:0.9em;
}







/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.image
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.gallery_box{
	width:90%;
	margin:auto;
}

.gallery_box img{
	width:100%;	
}

/*1カラム*/
.gallery_box_1clm{
	padding-bottom:30px;
}
@media (max-width: 768px) {
	.gallery_box_1clm{
		padding-bottom:4vw;
	}
}

/*2カラム*/
.gallery_box_2clm{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;
	
	text-align: left;
}
.gallery_box_2clm > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 30px ) / 2 );
	margin-right: 30px;
}
/*右端のマージンをゼロ設定*/
.gallery_box_2clm > div:nth-child( 2n ) {
	margin-right: 0;
}
.gallery_box_2clm_item{
	padding-bottom:30px;
}
@media (max-width: 768px) {
	.gallery_box_2clm{
		/*padding:0 4vw;*/
	}
	.gallery_box_2clm > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 4vw ) / 2 );
		margin-right: 4vw;
	}
	.gallery_box_2clm_item{
		padding-bottom:4vw;
	}
}

/*3カラム*/
.gallery_box_3clm{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;
	
	text-align: left;
}
.gallery_box_3clm > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 60px ) / 3 );
	margin-right: 30px;
}
/*右端のマージンをゼロ設定*/
.gallery_box_3clm > div:nth-child( 3n ) {
	margin-right: 0;
}
.gallery_box_3clm_item{
	padding-bottom:30px;
}
@media (max-width: 768px) {
	.gallery_box_3clm{
		/*padding:0 4vw;*/
	}
	.gallery_box_3clm > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 8vw ) / 3 );
		margin-right: 4vw;
	}
	.gallery_box_3clm_item{
		padding-bottom:4vw;
	}
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.注意事項
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.notice{
	
}

.notice_text{
	text-align: left;
	width:90%;
	margin:auto;
	font-size:0.9em;
}


.notice_text ul{
  padding: 10px 10px 20px;
  list-style: none;
}
.notice_text ul li{
  position: relative;
  line-height:1.5;
  padding-left: 20px;
  margin-bottom: 1em;
}
.notice_text ul li:before{
  content: "・";
  position: absolute;
  left: 0px;
}


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

.contents_footer{
	
}


.contents_footer_logo img{
	width:150px;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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(0%);
      opacity: 0;
   }
 
/* スタート時のスタイル */
   .animation.delighter.started {
      transform:none;
	  opacity:1;
   }
 
/* エンド時のスタイル */
   .animation.delighter.started.ended {
      
   }
