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

/*google fonts*/

/*Adobe fonts*/
@import url("https://use.typekit.net/iws0mat.css");
/*
PSFournier Std Petit Regular
font-family: "psfournier-std-petit", sans-serif;
font-weight: 400;
font-style: normal;

Kumlien Pro Medium
font-family: "kumlien-pro", serif;
font-weight: 500;
font-style: normal;
*/

/*カスタム変数*/
/*カラー用*/
:root {
	--color-pink:#f9eceb ;
	--color-pink2:#fcf5f5 ;
	--color-black:#7f4949 ;
	--color-pink3:#a9a19e ;
	--color-pink4:#e69d8e ;
}

:root {
	--color-main:var(--color-pink) ; 
	--color-sub:var(--color-pink2) ; 
	--color-text:var(--color-black) ;
	--color-point01:var(--color-pink3) ;
	--color-point02:var(--color-pink4) ; 
}


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

■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;
}
@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;
}


/*フッターのトップへボタン非表示*/
.footer__pagetop{
	display: none!important;
}
/*フッターの色変更*/
#footer.second-page .footer-sp,
#footer.second-page .footer__follow{
	background-color: var(--color-point02) ; 
}
#footer.second-page .footer__info{
	background-color: var(--color-sub) ; 
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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: var(--color-sub) ; 
}

/*全体の設定/フォントなど*/
.js-main{
	text-align: left;
	font-size:14px;
	line-height: 1.8;
	letter-spacing: 0.07em;
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
	font-weight: 400;
	color:var(--color-text);
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

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


/*画像サイズ制御 すべて横幅100%*/
.js-main img{
	width:100%;
	height: auto;
}

.main_wrapper{
	width:100%;
	max-width:500px;
	margin: 0 auto;
	background-color: #fff;
	padding-bottom:50px;
}


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

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


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

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

/*見出しとコンテンツ*/
.main_title{
	margin-bottom:1em;
	font-family: "psfournier-std-petit", sans-serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
}
.main_title_t01{
	font-size:3em;
}
.main_title_t02{
	font-size:1.25em;
}


/*背景色*/
.bg_color01{
	background-color:var(--color-point);
}
.bg_color02{
	background-color:var(--color-main);
}

/*テキスト色*/
.font_color00{/*ホワイト*/
	color:#fff;
}
.font_color01{
	color:var(--color-point01);
}
.font_color02{
	color:var(--color-point02);
}



/*フォント*/
/*フォント指定*/
.font-01{ /*明朝系*/
	font-family: 'ヒラギノ明朝 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{ /*PSFournier Std Petit Regular*/
	font-family: "psfournier-std-petit", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.font-04{ /*Kumlien Pro Medium*/
	font-family: "kumlien-pro", serif;
	font-weight: 500;
	font-style: normal;
}


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


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

h1{
	margin:0;
}

.main_visual img{
	line-height: 0;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.メインコンテンツ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main_item{
	text-align: center;
	padding-bottom:7em;
}

.main-item_text{
	margin: 2em auto;
}


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

.main_lineup_footer{
	
}

.lineup_wrapper{
	margin: 2em auto 0;
	width:95%;
}

.lineup_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素の寄せ*/
	justify-content: center;
	align-items: flex-start;
}

.lineup_box > div {
/*列数と間の余白の設定*/
	width: calc( ( 100% - 8% ) / 3 );
	margin-right: 4%;
	margin-bottom: 30px;
	
	text-align: center;
	line-height: 1.3;
}
/*右端のマージンをゼロ設定*/
.lineup_box > div:nth-child( 3n ),
.lineup_box > div:last-child{
	margin-right: 0;
}
.lineup_box img{
	width:100%;
}

.lineup_text{
	margin-top:1em;
	letter-spacing: 0;
}
.lineup_text_price{
	margin-top:0.25em;
}

.lineup_item .main-item_btn{
	margin-top:0.8em;
}
.lineup_item .button019{
	font-size:0.8em;
}



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


/*ベースノーマルver========================*/
.swiper_basenormal,
.swiper_basenormal_auto{
	text-align: justify;
	font-size:1em;
	letter-spacing: 0;
	width:90%;
}
.swiper_basenormal img,
.swiper_basenormal_auto img{
	width:100%;
	border-radius:25px;
}
.swiper_basenormal .swiper-wrapper,
.swiper_basenormal_auto .swiper-wrapper {
	height: auto;
}
.swiper_basenormal .swiper-slide,
.swiper_basenormal_auto .swiper-slide {
	padding-bottom:30px;
	height: auto;
}
/* ページネーションの色変更 */
.swiper_basenormal .swiper-pagination-bullet-active,
.swiper_basenormal_auto .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,
.swiper_basenormal_auto .swiper-horizontal>.swiper-pagination-bullets ,
.swiper_basenormal_auto .swiper-pagination-bullets.swiper-pagination-horizontal ,
.swiper_basenormal_auto .swiper-pagination-custom ,
.swiper_basenormal_auto .swiper-pagination-fraction {
	bottom:0;
}
/* 矢印の位置変更 */
.swiper_basenormal [class^="swiper-button-"],
.swiper_basenormal_auto [class^="swiper-button-"] {
	top: initial;
    bottom: 2%;
	z-index: 100;
}
/* 矢印のデザイン変更 */
/* 矢印画像の高さと幅 */
.swiper_basenormal .swiper-button-prev,
.swiper_basenormal_auto .swiper-button-prev {
	height: 10px;
	width: 20px;
	left:35%;
}
.swiper_basenormal .swiper-button-next,
.swiper_basenormal_auto .swiper-button-next {
	height: 10px;
	width: 20px;
	right:35%;
}
/* 矢印を消して画像に変更する */
.swiper_basenormal .swiper-button-prev::after,
.swiper_basenormal .swiper-button-next::after,
.swiper_basenormal_auto .swiper-button-prev::after,
.swiper_basenormal_auto .swiper-button-next::after
{
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	margin: auto;
}
/* 前に戻る矢印の画像パス */
.swiper_basenormal .swiper-button-prev::after,
.swiper_basenormal_auto .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,
.swiper_basenormal_auto .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.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);
  }
}





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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}
}



