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

/*google fonts*/

/*Adobe fonts*/
/*head内にscript記載*/
/*
Rounded M+ 1c medium
font-family: "m-plus-rounded-1c", sans-serif;
font-weight: 500;
font-style: normal;

Amster Light
font-family: "amster", serif;
font-weight: 300;
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マージン制御*/
.fs-l-pageMain{
	margin-top:100px!important;
}
@media screen and (max-width:768px) {
	.fs-l-pageMain{
		margin-top: 55px!important;
	}
}


@media screen and (max-width:768px) {
	.fs-l-main{
		padding-top:0!important;
	}
}

.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__controller{ display: none }

/*「商品グループエリア」表示調整*/
.fs-c-productList{
	margin: 0 3%;
}
.fs-c-productList__list {
    display: grid;
    grid-template-columns: calc(50% - 0px) calc(50% - 0px);
    grid-gap: 0px;
}
.fs-c-productList__list__item {
    margin: 25px 8px 0!important;
}

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

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

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

/*フッターの色変更*/
#footer.second-page .footer-sp,
#footer.second-page .footer__follow{
	background-color: #e69d8e ; 
}
#footer.second-page .footer__info{
	background-color: #fcf5f5 ; 
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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: #f6f1ed;
}

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 0.04em;
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
	font-weight: 400;
	color:#533b3b;
}

/*@media screen and (max-width:768px) {
	.js-main{
		padding-top:50px;
	}
}*/

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


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

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


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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:#533b3b;
    transition: 0.3s ease-in-out;
    /*font-weight: 500;*/
	border:solid 1px #533b3b;
}
.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: #533b3b;
  color: #FFF;
  opacity: 1;
}
.button019 a:hover:after {
  right: 1.4rem;
}


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

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

/*見出し*/



/*テキスト色*/
.font_color01{/*ピンク*/
	color: #c9a69b;
}



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



/*フォント*/
/*フォント指定*/
.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{ /*Amster Light*/
	font-family: "amster", serif;
	font-weight: 300;
	font-style: normal;
}
.font-04{/*Rounded M+ 1c medium*/
	font-family: "m-plus-rounded-1c", sans-serif;
	font-weight: 500;
	font-style: normal;
	transform:rotateZ(0.03deg);/*Rounded M+ 1c medium　ギザ付き防止*/
}
.bold{ /*太字*/
	font-weight: bold;
}


h1{
	margin:0;
	line-height: 0;
}



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

.main-item{
	background-color: #fff;
}
.main-item img{
	width:100%;
	line-height: 0;
}


/*intro*/

.main_intro{
	width: 100%;
	aspect-ratio: 1 / 1.81;
	
	background-image: url('../img/intro_backimg.jpg');
	background-position: bottom;
    background-size: cover;
}

.main_intro_wrapper{
	padding: 4em 10px;
}
.intro_text01{
	font-size: 0.9em;
	text-decoration: underline;
}
.intro_text02{
	margin-top:1em;
	font-size: 1.5em;
}
.intro_text03{
	margin-top:2em;
	line-height: 1.8;
}
.intro_text04{
	margin-top:3em;
	font-size: 0.6em;
}

@media screen and (max-width: 768px){
	.main_intro_wrapper{
		font-size: 3vw;
	}
}


/*point*/
.point_wrapper{
	
}
.point_title{
	
}
.point_title_t01{
	
}
.point_title_t01 span{
	font-size: 2.5em;
	margin-left: 0.1em;
}
.point_title_t02{
	font-size: 2em;
	letter-spacing: 0.05em;
	line-height: 1.35;
}
@media screen and (max-width: 768px){
	.point_title_t02{
		font-size: 7vw;
		letter-spacing: 0.025em;
	}
}

.point_img_wrapper{
	width: 85%;
	margin: 1.75em auto 0;
}

.point_text_wrapper{
	text-align: center;
}
@media screen and (max-width: 768px){
	.point_text_wrapper{
		margin: 0.5em auto;
	}
}
@media screen and (min-width: 769px){
	.point_text_wrapper{
		margin: auto;
		font-size: 1.25em;
	}
}
.point_text_wrapper ul{
	display: inline-flex;       
    flex-direction: column;     
    max-width: 75%;             
    
    /* ******** 【★重要】liの幅を内容に合わせるための設定 ******** */
    /* liの幅がulの幅いっぱいに広がるのを防ぐために、flex-startを指定 */
    align-items: flex-start; 
    
    /* liにネガティブマージンを使うため、ulに十分な左パディングを与える */
    padding-left: 20px; 
    
    /* マーカーはliの外側（outside）に配置 */
    list-style-position: outside;
    /* ****************************************************** */
	
}
.point_text_wrapper li{
/* liの幅はFlexアイテムとして内容の長さに自然に合わせられます */
    
    /* 1. マーカー分のスペースを左にずらす */
    margin-left: -20px; 
    
    /* 2. テキストは左揃え (Flexboxの設定と合わせて維持) */
    text-align: left; 
    
    /* 3. マーカーを再度設定 */
    list-style-type: disc; 

    /* 折り返し設定 (変更なし) */
    word-wrap: break-word; 
    overflow-wrap: break-word; 
    
    /* liがulの幅いっぱいに広がるのを防ぐための設定 (Flexboxでalign-items: flex-start;を設定したので不要ですが、念のため) */
    /* align-self: flex-start; */
}



/*interval*/




/*use*/
.main_use{
	
}
.use_title{
	width: 80%;
	margin: auto;
}
.use_title img{
	
}
.use_item_wrapper{
	margin: 2em auto;
}
.use_item_t{
	line-height: 0;
}
.use_item_contents_wrapper{
	padding: 0 0 3em 0;
	border-bottom: 1px solid #533b3b;
}
.use_com_wrapper{
	width: 80%;
	margin:  0.5em auto;
}
.com_text{
	text-align: justify;
	font-size: 0.85em;
	line-height: 1.8;
}
.use_img_wrapper{
	width: 80%;
	margin: 2em auto 0;
}



/*coordinate*/
.main_coordinate{
	
}
.coordinate_title{
	width: 70%;
	margin: auto;
}
.coordinate_img{
	margin-top: 2em;
}



/*lineup*/
.item_lineup{
	margin: 0 auto 3em;
}
.lineup_title{
	margin-bottom: 3em;
}
.lineup_title_t01{
	font-size: 2em;
}



/*footer*/
.main_footer_img{
	
}
.main_footer_logo{
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.フローティングボタン
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.floating_btn{
	position: fixed;
	z-index: 100;
	right: 10px;
	bottom: 10px;
	
	border-radius: 100px;
	background-image: linear-gradient(47deg, rgba(131, 129, 231, 1), rgba(255, 143, 170, 1));
	box-shadow: 0 5px 10px 0 rgba(150, 100, 100, .5);
	
	color: #fff;
	
	transition-duration: .4s;
}
.floating_btn:hover{
	transform: scale(1.1);
}
.floating_btn a{
	display: block;
	padding: 10px 30px;
	
	color: #fff;
	
}
.floating_btn a:hover{
	opacity: 1;
}
.floating_btn a::before{
	content: "";
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    background-color: red;
    background-image: url('https://www.joint-space.co.jp/category_common/vaniller/lvn_oshikatsu/img/icon_cart.svg');
    background-position: center;
    background-size: contain;
	margin-right:0.5em;
	transform: translateY(0.2em); /* 上下方向の位置を微調整する */
	background-color: transparent;
	border-color: transparent;
}

@media screen and (min-width: 769px){
	.floating_btn{
		font-size:1.5em;
	}
}



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

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

.fadein-top2 {
    animation: fadeIn2 2s ease 0.2s 1 both;
    -webkit-animation: fadeIn2 2s ease 0.2s 1 both;
}
@keyframes fadeIn2 {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn2 {
    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 {
      
   }


/*animation_swing-下からふわっと出現*/
/* 基本のスタイル */
.animation_swing.delighter {
  transition: all 1.25s ease-out;
  transform: translateY(25%);
  opacity: 0;
}
/* スタート時のスタイル */
.animation_swing.delighter.started {
  transform:none;
  opacity:1;
}
/* エンド時のスタイル */
.animation_swing.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.swiper
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*イベント用*/
.swiper_event .swiper-wrapper{
	height: auto;
}
.swiper_event .swiper-slide{
	height: auto;
	padding: 0px 0px 30px 0px;
}
.swiper-slide-active{
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
}
.swiper_event .swiper-slide-next,
.swiper_event .swiper-slide-prev {
	transform: scale(0.85);/*左右の画像のサイズを80%に*/
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
}
/* ページネーションの色変更 */
.swiper_event .swiper-pagination-bullet{
	background-color: #999;
}
.swiper_event .swiper-pagination-bullet-active {
  background-color: #c9a69b;
}
/*スライダーアイテムのカスタム*/
.swiper_event .swiper-slide img{
	/*border:solid 1px #badacc;*/
	border-radius: 50px;
}


/*ノーマル*/
.swiper_normal .swiper-wrapper{
	height: auto;
}
.swiper_normal .swiper-slide{
	height: auto;
	padding: 0px 0px 30px 0px;
}
/* ページネーションの色変更 */
.swiper_normal .swiper-pagination-bullet{
	background-color: #999;
}
.swiper_normal .swiper-pagination-bullet-active {
  background-color: #c9a69b;
}
/*スライダーアイテムのカスタム*/
.swiper_normal .swiper-slide img{
	/*border:solid 1px #badacc;*/
	border-radius: 30px;
}
