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

/*Adobe fonts*/
@import url("https://use.typekit.net/zvd1wbm.css");

/*Adobe Garamond Pro Regular
font-family: "adobe-garamond-pro", serif;
font-weight: 400;
font-style: normal;
*/


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

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

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.イントロダクション
5.アイテム
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;*/
	margin-top:-5px;
	background-color: #fff;
}
@media screen and (max-width:768px) {
	.fs-c-breadcrumb{
		/*padding-top:80px;*/
	}
}

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

/*「商品グループ表示」を非表示*/
.fs-c-subgroup { display: none }

/*「商品グループエリア」を非表示*/
/*.fs-c-productList { display: none }*/

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

/*共通フッターのマージン調整*/
.footer-sp{
	margin-top: 0 !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: #fff;
}

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	font-size:13px;
	line-height: 2;
	letter-spacing: 0.07em;
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
	font-weight: 400;
	color:#6b6b6b;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

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

/*PC980px、SP100%*/
.js-container{
	width:100%;
	max-width:980px;
	margin:auto;
}


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

/*ボタン*/
.button019 a {
    background: #6b6b6b;
    /*border-radius: 3px;*/
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 400;
	border:solid 1px #6b6b6b;
}
.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: #6b6b6b;
  color: #FFF;
  opacity: 0.5;
}
.button019 a:hover:after {
  right: 1.4rem;
}


/*moreボタン（画像付き）*/
.more_btn{
	margin:1em auto;
	display: inline-block;
	font-size:1.2em;
}
.more_btn a{
	display: inline-block;
}
.more_btn a::after{
	content: url(../img/btn_more.svg);
	vertical-align: middle;
	vertical-align: -webkit-baseline-middle;
  	padding-left: 10px;
}


/*共通padding設定*/
.main-padding{
	padding: 100px 0;
}
@media screen and (max-width: 768px){
	.main-padding{
		padding: 3em 0;
	}
}

/*共通margin設定*/
.main-margin{
	margin: 100px auto;
}
@media screen and (max-width: 768px){
	.main-margin{
		margin: 7em auto;
	}
}

/*見出し*/
.main-title{
	font-size:1.8em;
}
.main-title_undertext{
	margin-top:2em;
	margin-bottom:4em;
}
@media screen and (max-width: 768px){
	.main-title{
		font-size:5.5vw;
	}
	.main-title_undertext{
		font-size:3.5vw;
	}
}


/*コンテンツ部分の背景色*/
.contents_bgcolor{
	width:100%;
	background-color: #fff;
	padding: 0 0 50px;
}

/*背景色*/
.bg-color01{
	background: #fff;
}


/*テキスト色*/
.font-color01{ /**/
	color:#db7e76;
}

/*フォント*/
/*フォント指定*/
.font-01{ /*明朝系*/
	font-family: 'adobe-garamond-pro','ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
}
.font-02{ /*ゴシック系*/
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
}
.font-03{ /*Adobe Garamond Pro Regular*/
	font-family: "adobe-garamond-pro", serif;
	font-weight: 400;
	font-style: normal;
}

.bold{ /*太字*/
	font-weight: bold;
}


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

/*ビジュアル用背景画像の設定/iPhone対応版*/
body:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:auto;
  min-height:100vh;
  background:url("../img/main_pc.jpg?timestamp=250424") center no-repeat;
  background-size:cover;
}
@media screen and (max-width: 768px){
	body:before{
		width:100%;
  		height:auto;
		min-height:100vh;
		background:url("../img/main_sp.jpg?timestamp=250424") center no-repeat;
		background-size:cover;
	}
}

/*要素上下左右中央寄せ*/
.main-visual{
	display: flex;
  	justify-content: center;
  	align-items: center;
	min-height: 85vh;
	text-align: center;
	
	position: relative;
}

.main-visual_contents{
	margin: 40px auto;
}
.main-visual_logo{
	width:85%;
	max-width:506px;
	margin:auto;
}
.main-visual_logo .title-logo{
	margin:auto;
}
.main-visual_logo .title-logo img{
	width:100%;
}

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

}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-intro{
	width:100%;
	background:url("../img/intro_pc.jpg") center no-repeat;
  	background-size:cover;
	
	color:#fff;
	
	/*要素上下左右中央寄せ*/
	display: flex;
  	justify-content: flex-start;
  	align-items: center;
	min-height: 85vh;
	text-align: left;
	position: relative;
}
.intro-box{
	width:400px;
	max-width: 85vw;
	margin-left:10vw;
}

@media screen and (max-width: 768px){
	.main-intro{
		background:url("../img/intro_sp.jpg") center no-repeat;
		background-size:cover;
		
		justify-content: center;
  		align-items: flex-end;
	}
	.intro-box{
		margin-left:0;
		margin-bottom:4em;
		line-height: 1.7;
	}
}


.intro-text01{
	font-size:1.8em;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.マップ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-map{
	
}

.main-map_wrapper{
	width:auto;
	max-width:95%;
	margin:auto;
}







/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.アイテム
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-item_wrapper{
	
}



.main-item_head01 {
    display: flex;
    align-items: center;
	font-size:1.2em;
	margin-bottom:4em;
}
.main-item_head01:before,
.main-item_head01:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #666;
}
.main-item_head01:before {
    margin-right: 1rem;
}
.main-item_head01:after {
    margin-left: 1rem;
}



.main-item_head{
	margin-bottom:2em;
}
.itemhead_text01{
	display: inline-block;
	line-hight:1;
	font-size:2.7em;
	border-bottom: 1px solid #6b6b6b;
}
.itemhead_itemimg{
	width:50%;
	max-width: 150px;
	margin:1em auto 0;
}
.itemhead_itemimg img{
	width:100%;	
}
.itemhead_text02{
	font-size:1.5em;
	line-height: 1.4;
	margin:0.5em;
}
.itemhead_text03{
	line-height: 1.7;
}



.main-item_innner{

}


.main-item_img{
	width:90%;
	max-width:400px;
	margin:auto;
}

.main-item_text{
	margin:1.5em;
	font-size:2em;
	line-height:1.6;
}
@media screen and (max-width: 768px){
	.main-item_text{
		font-size:6vw;
		line-height:1.7;
	}
}



.main-item_spec{
	width:90%;
	max-width:400px;
	margin: 2em auto 4.5em;
}
.main-item_spec img{
	width:100%;
}



.main-item_review{
	margin: 1em auto 0;
	width:90%;
	max-width: 350px;
}
.main-item_review_head img{
	width:100%;
}
.main-item_review_star{
	margin:0.4em auto;
	font-size:2.3em;
}
.main-item_review_item{
	margin-top:1em;
	background-color: #e4e5ed;
	padding: 20px;
	text-align: justify;
	line-height: 1.8;
	letter-spacing: 0.02em;
}



.main-item_link{
	width:90%;
	max-width: 450px;
	margin: 3.5em auto 0;
}
.main-item_link img{
	width:100%;	
}

.main-item_link_wrapper{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素の寄せ*/
	justify-content: center;
	align-items: center;
	
	border: 1px solid #6b6b6b;
	padding:5px;
}
.item_link_01 {
	width:35%;
}
.item_link_02 {
	width:65%;
	text-align: left;
}

.item_link_02_text01{
	font-size: 1.3em;
	line-height:1.5;
}
.item_link_02_text02{
	margin-top:0.5em;
	font-size: 0.9em;
	line-height: 1.7;
}






.main-item_end{
	margin-top:2em;
	display: inline-block;
	background-color: #6b6b6b;
	color: #fff;
	line-height: 1;
	padding: 0.5em 1em;
}



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

.contents-footer{
	
}


/*線*/
.contents-footer_line{
	margin: 0 auto 3em;
	width:1px;
	height:50px;
	background-color: #666;
}


/*ロゴ*/
.contents-footer_logo{
	margin: 0 auto 3em;
	width:100px;
	max-width: 30%;
}
.contents-footer_logo img{
	width:100%;
}





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.swiper
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*ベースノーマルver========================*/
.swiper_basenormal{
	text-align: justify;
	font-size:1em;
	letter-spacing: 0;
}
.swiper_basenormal img{
	width:100%;	
}
.swiper_basenormal .swiper-wrapper{
	height: auto;
}
.swiper_basenormal .swiper-slide{
	padding-bottom:30px;
	height: auto;
}
/* ページネーションの色変更 */
.swiper_basenormal .swiper-pagination-bullet-active {
	background-color: #6d6d6d;
}
/* ページネーションの位置調整 */
.swiper_basenormal .swiper-horizontal>.swiper-pagination-bullets,
.swiper_basenormal .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper_basenormal .swiper-pagination-custom,
.swiper_basenormal .swiper-pagination-fraction{
	bottom:0;
}
/* 矢印の位置変更 */
.swiper_basenormal [class^="swiper-button-"]{
	top: initial;
    bottom: 2%;
	z-index: 100;
}
/* 矢印のデザイン変更 */
/* 矢印画像の高さと幅 */
.swiper_basenormal .swiper-button-prev{
	height: 10px;
	width: 20px;
	left:35%;
}
.swiper_basenormal .swiper-button-next {
	height: 10px;
	width: 20px;
	right:35%;
}
/* 矢印を消して画像に変更する */
.swiper_basenormal .swiper-button-prev::after,
.swiper_basenormal .swiper-button-next::after {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	margin: auto;
}
/* 前に戻る矢印の画像パス */
.swiper_basenormal .swiper-button-prev::after {
	background-image: url(https://www.joint-space.co.jp/category_common/huit_bouquet/feature/hit_1stanv/img/icon_prev.svg);
	height: 10px;
	width: 20px;
}
/* 次に進む矢印の画像パス */
.swiper_basenormal .swiper-button-next::after {
	background-image: url(https://www.joint-space.co.jp/category_common/huit_bouquet/feature/hit_1stanv/img/icon_next.svg);
	height: 10px;
	width: 20px;
}

.swiper a:hover, a:hover img{
	opacity: 1;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.アコーディオン
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.details {
	background-color: white;
}
.summary {
	cursor: pointer;
	font-weight: bold;
	padding: 10px;
	text-align: center;
	border: solid 1px #b6b6b6;
}
.answer {
	overflow: hidden;
	
}
.answerInner {
	padding: 0 20px 20px;
	border: solid 1px #b6b6b6;
	border-top-color: transparent;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.初回スクロール禁止
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/* ==== アニメーション｜スクロール封じ ==== */
/*@keyframes scrollseal {
from { overflow: hidden }
to { overflow: visible }
}
*/
/* ==== 指定の秒間スクロール禁止 ==== */
/*body {
animation: scrollseal 0s 2.5s both;
}*/


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

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

.fadein-top2 {
    animation: fadeIn2 2s ease 1s 1 both;
    -webkit-animation: fadeIn2 2s ease 1s 1 both;
}
@keyframes fadeIn2 {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn2 {
    0% {opacity: 0}
    100% {opacity: 1}
}

.fadein-top3 {
    animation: fadeIn3 2s ease 1.5s 1 both;
    -webkit-animation: fadeIn3 2s ease 1.5s 1 both;
}
@keyframes fadeIn3 {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn3 {
    0% {opacity: 0}
    100% {opacity: 1}
}

.fadein-top4 {
    animation: fadeIn4 2s ease 2s 1 both;
    -webkit-animation: fadeIn4 2s ease 2s 1 both;
}
@keyframes fadeIn4 {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn4 {
    0% {opacity: 0}
    100% {opacity: 1}
}



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


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

}


/*animation_blur-じわっと出現*/
/* 基本のスタイル */
.animation_blur.delighter {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* スタート時のスタイル */
.animation_blur.delighter.started {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: .8s;
}
/* エンド時のスタイル */
.animation_blur.delighter.started.ended {

}
/* アニメーション設定 */
@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
      opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}



/*animation-メニュー用時差*/
/*01*/
.animation_menu01.delighter {
  transition: all .5s 0s ease-out;
  transform: translateY(30%);
  opacity: 0;
}
/* スタート時のスタイル */
.animation_menu01.delighter.started {
  transform:none;
  opacity:1;
}
/* エンド時のスタイル */
.animation_menu01.delighter.started.ended {

}
/*02*/
.animation_menu02.delighter {
  transition: all .5s .25s ease-out;
  transform: translateY(30%);
  opacity: 0;
}
/* スタート時のスタイル */
.animation_menu02.delighter.started {
  transform:none;
  opacity:1;
}
/* エンド時のスタイル */
.animation_menu02.delighter.started.ended {

}
/*03*/
.animation_menu03.delighter {
  transition: all .5s .5s ease-out;
  transform: translateY(30%);
  opacity: 0;
}
/* スタート時のスタイル */
.animation_menu03.delighter.started {
  transform:none;
  opacity:1;
}
/* エンド時のスタイル */
.animation_menu03.delighter.started.ended {

}
/*04*/
.animation_menu04.delighter {
  transition: all .5s .75s ease-out;
  transform: translateY(30%);
  opacity: 0;
}
/* スタート時のスタイル */
.animation_menu04.delighter.started {
  transform:none;
  opacity:1;
}
/* エンド時のスタイル */
.animation_menu04.delighter.started.ended {

}

