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

body  {
    color: #262626;
	margin: 0;
    background-color: #ececec;
    font-family:YakuHanJP, 'Noto Serif JP', serif;
	font-weight: 300;
}

img {
    max-width: 100%;
}

.main{
	width: 100%;
	text-align: center;
}

.header{
	width: 100%;
	color: #fff;
	font-size: 3rem;
	text-align:center;
	overflow:hidden;
}



/* コンセプト */

.box_concept{
	width: 100%;
	max-width: 1100px;
	border: 0px;
	position: relative;
	margin: 6em auto 0 auto;
	padding: 8em 0px 6em 0em;
	display: flex;
	-webkit-justify-content: space-evenly;
    justify-content: space-evenly;
}

.box_concept h2{
	color: #fff;
	font-size: 95pt;
	font-family: minion-pro, serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -1.7em;
}
.box_concept h3{
	font-size: 65pt;
	font-family: 'Hurricane', cursive;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -1.3em;
}

.concept_text{
	padding: 4em;
	display:flex;
	justify-content:center;
	align-items:center;
}

.concept_text ul {
	list-style: none;
	margin: 0;padding: 0;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.concept_text ul li {
    margin: 0;
    text-align: center;
}








/* ボックス透明 */

.box_top{
	width: 100%;
	border: 0px;
	position: relative;
	margin-top: 5em;
	padding-bottom: 0px;
}
.box_top h2{
	color: #fff;
	font-size: 75pt;
	font-family: minion-pro, serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -1.7em;
}
.box_top h3{
	font-size: 75pt;
	font-family: 'Hurricane', cursive;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -1.7em;
}


/* ボックス白背景 */

.box{
	width: 100%;
	border: 0px;
	background: #fff;
	position: relative;
	margin-top: 7em;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
.box h2{
	color: #fff;
	font-size: 75pt;
	font-family: adobe-garamond-pro, serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -1.7em;
}
.box h3{
	font-size: 75pt;
	font-family: 'Hurricane', cursive;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -1.7em;
}



/* ボックスタイトル文字装飾 */

.title_ic{
	color: #61acca;
	text-shadow:3px 2px  #fff;
}

.title_rl{
	color: #c55b68;
	text-shadow:3px 2px  #fff;
}

/* 中身 */

.container{
	max-width: 1000px;
	width: 100%;
	margin:0 auto;
	text-align: center;
	padding-top: 80px;
	padding-bottom: 0px;
}

/* 解説 */
.text_center{
	text-align: center;
	font-size:1.2em;
	line-height: 1.8em;
	padding: 3em 0px 3em 0px;
}

.subtext_center{
	text-align: center;
	font-size:1.2em;
	line-height: 1.8em;
	margin: 1em 0px 3em 0px;
}


/* メンバー画像 */

.thum_list {
    margin: 10px 0px 30px 0px;
}

.thum_list ul {
	width: 100%;
	list-style: none;
	margin:0px;
	padding:0px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.thum_list li {
	margin:2px;
}

/* フェードイン用のCSS */

/* 上からフェードイン */
.slide-top {
	opacity: 0;
	transform: translate(0, -20px);
	transition: all 0.5s ease-out;
	transition-delay: 0.5s;
 }

/* 下からフェードイン */
.slide-bottom {
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 0.5s ease-out;
	transition-delay: 0.5s;
 }

 /* 左からフェードイン */
.slide-left {
	opacity: 0;
	transform: translate(-20px, 0);
	transition: all 0.5s ease-out;
 }

/* 右からフェードイン */
.slide-right {
	opacity: 0;
	transform: translate(20px, 0);
	transition: all 0.5s ease-out;
 }

/* 右からフェードイン */
.fadein {
	opacity: 0;
	transform: translate(0);
	transition: all 1.5s ease-out;
 }


/* スライダー */
.slide{
	margin:auto;
	padding-bottom:2em;
}

.slide-arrow {
  background-color: #fff;
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}
.prev-arrow {
	width: 20px;
	height: 20px;
	border: 3px solid;
	background: none;
	border-color:  transparent transparent #999 #999;
	transform: rotate(45deg);
	left: 25px;
	z-index: 2;
}
.next-arrow {
	width: 20px;
	height: 20px;
	border: 3px solid;
	background: none;
	border-color: #999 #999 transparent transparent;
	transform: rotate(45deg);
	right: 25px;
}
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
}



/* 仕様詳細 */
.box_flex{
    display: flex;
	justify-content: space-between;
	}

.tokuten{
	border: 1px solid #999999;
	width: 48%;
	position: relative;
	padding-top: 1.5em;
	padding-bottom: 2em;
	margin: 50px 0px;
}

.tokuten h3{
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
  top: -2.5em;
}
.tokuten .title{
  padding: 0 .5em;
	font-size: 25pt;
	font-weight: 200;
  background: #ececec;
  color: #262626;
}
.tokuten .inner{
	line-height: 1.8em;
	text-align: left;
	padding:.5em 1.5em;
	font-size:1.2em
}


/*詳細ボックス内装飾*/


.price{
	font-size: 1.5em;
}

.mark_w{
	display: inline-block;
	background:#fff;
	padding: 0px .5em;
	margin: .5em 0px;
}

.shiyou{
	font-size: .8em;
	line-height: 1.6em;
}
.message{
	font-size: .8em;
	line-height: 1.6em;
	padding: .25em 1em;
}

/*注意書き*/

.kome{
	text-align: left;
	color: #999;
	padding:0 1em 2em 1em;
}


/* 左側div_バナー */
.boxl2{
	 width:410px;
	 float:left;
}

/* 右側div_バナー */
.boxr2{
	 width:410px;
	 float:right;
}

/* フッター */
.footer{color:#666;
		width:100%;
		text-align:center;
		margin:auto;
		clear:left;
		padding:50px 0px 40px 0px;
}



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

@media screen and (max-width: 1000px) {

.box_top h2{
	color: #fff;
	font-size: 60pt;
	font-family: adobe-garamond-pro, serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -1.7em;
}
.box_top h3{
	font-size: 60pt;
	font-family: 'Hurricane', cursive;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -1.7em;
}
	
.box h2{
	color: #fff;
	font-size: 60pt;
	font-family: adobe-garamond-pro, serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -1.7em;
}
.box h3{
	font-size: 60pt;
	font-family: 'Hurricane', cursive;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -1.7em;
}


.container{
	max-width: 1000px;
	width: 100%;
	margin:0 auto;
	text-align: center;
	padding-top: 60px;
	padding-bottom: 10px;
}
	
	
.tokuten{
	border: 1px solid #999999;
	position: relative;
	margin: 1em;
}
	
	
	
}



/* PC用 */
.pc { display: block !important; }
.sp { display: none !important; }

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

@media screen and (max-width: 767px) {

/* スマホ用 */
.pc { display: none !important; }
.sp { display: block !important; }

.header{
	width:100%;
	background-image:url(images/bg.jpg);
	text-align:center;
}

.container{
	max-width: 1000px;
	width: 100%;
	font-size: 1rem;
	text-align: center;
	margin:0 auto;
	padding-top: 30px;
	padding-bottom: 10px;
}


.box_concept{
	width: 100%;
	max-width: 1100px;
	border: 0px;
	position: relative;
	margin-top: 3em;
	padding: 6em 0px  3em  0em;
	display: block;
	-webkit-justify-content: center;
    justify-content: center;
}
.box_concept h2{
	color: #fff;
	font-size: 45pt;
	font-family: minion-pro, serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -1.7em;
}
.box_concept h3{
	font-size: 40pt;
	font-family: 'Hurricane', cursive;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -1.3em;
}

.box_concept .logo{
	width: 60%;
}
	
.concept_text{
	padding: 0 3em;
	text-align: center;
}

	
	
	
.box_top{
	width: 100%;
	border: 0px;;
	position: relative;
	margin-top: 3em;
	padding-bottom: 0px;
}
	
.box_top h2{
	color: #fff;
	font-size: 35pt;
	font-family: adobe-garamond-pro, serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -1.75em;
}
.box_top h3{
	font-size: 35pt;
	font-family: 'Hurricane', cursive;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -1.75em;
}

.box{
	width: 100%;
	border: 0px;
	background: #fff;
	position: relative;
	margin-top: 4em;
	padding-bottom: 0px;
}
	
.box h2{
	color: #fff;
	font-size: 35pt;
	font-family: adobe-garamond-pro, serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -1.75em;
}
.box h3{
	font-size: 40pt;
	font-family: 'Hurricane', cursive;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -1.75em;
}
	

	
.subtext_center{
	text-align: center;
	font-size: 0.8em;
	line-height: 1.6em;
}
	
.text_center{
	text-align: center;
	font-size: 0.8em;
	line-height: 1.6em;
}
	

	


/* 特典div */	
.box_flex{
    display:block;
	justify-content: center;
	padding: 1em;
	}
	
.tokuten{
	box-sizing:border-box;
	width: 100%;
	font-size: 0.8em;
	border: 1px solid #999999;
	margin: 3em 0;
	padding-top:.5em;
	padding-bottom: .5em;
}

.tokuten h3{
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	top: -2.2em;
}
.tokuten .title{
	padding: 0.5em;
	font-size: 18pt;
	font-weight: 200;
	background: #ececec;
	color: #262626;
}
.tokuten .inner{
  padding:.7em 1em;
}



	
	
/* スライダー */
.slide{
	margin:auto;
	padding-bottom:.5em;
}

.slide-arrow {
  background-color: #fff;
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}
.prev-arrow {
	width: 15px;
	height: 15px;
	border: 2px solid;
	background: none;
	border-color:  transparent transparent #999 #999;
	transform: rotate(45deg);
	left: 5px;
	z-index: 2;
}
.next-arrow {
	width: 15px;
	height: 15px;
	border: 2px solid;
	background: none;
	border-color: #999 #999 transparent transparent;
	transform: rotate(45deg);
	right: 5px;
}
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
}
	
	
	
	
	
.map{
	width:90%;
	height:300px;
}

.price_goods{
	margin-top: 10px;
	line-height: 1.2;
}
	
/* 左側 */
.boxl{
	width:100%;
	box-sizing: border-box;
	overflow: hidden;
	padding:0px 10px 30px 10px;
}
.boxl img{
	width: 85%;
}

/* 右側 */
.boxr{
	width:100%;
	box-sizing: border-box;
	overflow: hidden;
	margin-top: 20px;
	padding:0px 10px 30px 10px;
}
	
dl{
	margin-top: 5px;
	width: 100%;
	font-size: 16px;
}

dt {
	width: 100%;
	text-align: left;
}

dd {
	width: 100%;
	text-align: left;
}

	/* 左側_バナー */
.boxl2{
	 width:100%;
	 box-sizing: border-box;
	  overflow: hidden;
      padding:0;
}

/* 右側_バナー */
.boxr2{
	 width:100%;
	 box-sizing: border-box;
	  overflow: hidden;
      padding:0;
}

/* フッター　*/
.footer{width:100%;
		color: #666;
		font-size: .7em;
		text-align:center;
		margin:auto;
		clear:left;
		padding:40px 0px 30px 0px;
}
}