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

/*google fonts*/

/*Adobe fonts*/
@import url("https://use.typekit.net/xtj0tat.css");
/*
Adorn Garland Regular
font-family: "adorn-garland", sans-serif;
font-weight: 400;
font-style: normal;

Big Caslon CC Regular
font-family: "big-caslon-fb", 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マージン制御*/
.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: #fff;
}

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

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#342f36;
}
.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:600px;
	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:#b2978b;
	transition: 0.3s ease-in-out;
	/*font-weight: 500;*/
	border:solid 1px #b2978b;
}
.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: #b2978b;
  color: #FFF;
  opacity: 1;
}
.button019 a:hover:after {
  right: 1.4rem;
}

/*ボタン　色変更*/
.button019.btn_white a {
	background: transparent;
	backdrop-filter: blur(2px);
    color:#fff;
	border:solid 1px #fff;
	font-size:2em;
	max-width: 350px;
}
.button019.btn_white a:after {
	width: 12px;
	height: 12px;
}
.button019.btn_white a:hover {
  background: #fff;
  color: #b2978b;
  opacity: 1;
}


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

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

/*見出し*/
.title02{
	
}
.title02_text01{
	
}
.title02_text02{
	font-size: 2em;
	letter-spacing: 0.1em;
}

/*テキスト色*/
.font_color01{/*モカ*/
	color: #b2978b;
}



/*背景色*/
.bgcolor-01{/*白*/
	background-color: #fff;
}
.bgcolor-02{/*薄グレー*/
	background-color: #efefef;
}
.bgcolor-03{/*薄グレー2*/
	background-color: #e0dee1;
}

/*フォント*/
/*フォント指定*/
.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{ /*Adorn Garland Regular*/
	font-family: "adorn-garland", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.font-04{/*Big Caslon CC Regular*/
	font-family: "big-caslon-fb", serif;
	font-weight: 400;
	font-style: normal;
}
.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%;
}
.main_intro_contents01{
	padding-top: 3em;
	padding-bottom: 3em;
	background-color: #fff;
	font-size: 11px;
	letter-spacing: 0.15em;
}
.main_intro_contents02{
	width: 100%;
	aspect-ratio: 768 / 787;
	
	background-image: url('../img/intro_img01.jpg');
	background-position: bottom;
    background-size: cover;
}
.main_intro_wrapper{
	padding: 4.2em 10px;
}
.intro_text01{
	font-size: 1.1em;
	text-decoration: underline;
}
.intro_text02{
	/*margin-top:0.5em;*/
	font-size: 3.3em;
}
.intro_text03{
	margin-top:0.4em;
	font-size: 1.7em;
	line-height: 1.5;
}
@media screen and (max-width: 768px){
	.main_intro_wrapper{
		font-size: 2.5vw;
	}
}


/*point*/
.point_wrapper{
	
}
.point_title{
	
}
.point_title_t01{
	
}
.point_title_t02{
	font-size: 2em;
	letter-spacing: 0.05em;
	line-height: 1.35;
}

.point_title_t02 {
	display: inline-block;
    margin: 0 auto;
    padding: 5px 50px;
    background: #fff;
    color:#b2978b;
	border:solid 1px #b2978b;
    border-radius: 100px;
}
.point_title_t03{
	margin-top:0.5em;
	font-size: 2.5em;
	letter-spacing: 0.05em;
	line-height: 1.35;
}
@media screen and (max-width: 768px){
	.point_title_t02{
		font-size: 5vw;
		letter-spacing: 0.025em;
	}
	.point_title_t03{
		letter-spacing: 0;
	}
}

.point_img_wrapper{
	width: 90%;
	margin: 1.75em auto 0;
	line-height: 0;
}
/*イレギュラー*/
#point03 .point_img_wrapper{
	width: 100%;
}

.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;
	}
}




/*coordinate*/
.main_coordinate{
	margin: 0 calc(50% - 50vw);  /* 画面幅いっぱいにはみ出させるためのネガティブマージン */
  	width: 100vw;                /* 幅を画面幅いっぱいに指定 */
}
.coordinate_title{
	width: 70%;
	margin: auto;
}
.coordinate_img{
	margin-top: 2em;
}




/*よくある質問*/
.main_faq{
	padding-top: 50px;
	padding-bottom: 50px;
	
	margin: 0 calc(50% - 50vw);  /* 画面幅いっぱいにはみ出させるためのネガティブマージン */
  	width: 100vw;                /* 幅を画面幅いっぱいに指定 */
}

.faq_item{
	width: 90%;
	max-width: 520px;
	margin: 3em auto 0;
	text-align: left;
	padding-top:30px;
}
.faq_item_q,
.faq_item_a_icon
{
	margin: 0 30px ;
}
.faq_item_a_img{
	line-height: 0;
}

.faq_item_q{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素の寄せ*/
	justify-content: flex-start;
	align-items: center;
	
	padding-bottom: 10px ;
	border-bottom: 2px solid #342f36;
}
.faq_item_q_icon{
	width:15%;
	padding:1%;
}
.faq_item_q_text{
	width:85%;
	padding-left: 10px;
	font-size:2em;
	line-height: 1.2;
	font-weight: 500;
}

.faq_item_a{
	margin-top: 2em;
}
.faq_item_a_icon{
	width:30%;
}
.faq_item_a_text{
	margin: 0.5em 30px 1em ;
	font-size: 1.3em;
}
.faq_item_a_text p{
	font-size:0.7em;
	line-height: 1.5;
}

@media screen and (max-width: 769px){
	.faq_item{
		padding-top:5vw;
	}
	.faq_item_q,
	.faq_item_a_icon
	{
		margin: 0 5vw ;
	}
	.faq_item_q_text{
		font-size: 5vw;
	}
	.faq_item_a_text{
		font-size: 3.5vw;
		margin: 2.5vw 5vw 5vw ;
	}
}





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

/*リボン帯*/
.lineup_title_t03 {
  display: inline-block;
  position: relative;
  height: 50px;/*リボンの高さ*/
  line-height: 50px;/*リボンの高さ*/
  text-align: center;
  padding: 0 40px;/*横の大きさ*/
  font-size: 1.5em;/*文字の大きさ*/
  background: #b2978b;/*塗りつぶし色*/
  color: #FFF;/*文字色*/
  box-sizing: border-box;
}
.lineup_title_t03:before, .lineup_title_t03:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}
.lineup_title_t03:before {
  top: 0;
  left: 0;
  border-width: 25px 0px 25px 15px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
.lineup_title_t03:after {
  top: 0;
  right: 0;
  border-width: 25px 15px 25px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}



/*footer*/
.main_footer_img{
	width: 100%;
	
	background-image: url('../img/footer_img.jpg');
	background-position: center;
    background-size: cover;
	
	padding: 200px 10px;
	color: #fff;
}
.main_footer_img_text01{
	font-size:1.5em;
	text-decoration: underline;
}
.main_footer_img_text02{
	margin-top:0.25em;
	font-size:2.5em;
	line-height: 1.3;
}
.main_footer_img_text03{
	margin-top:1.5em;
}
@media screen and (max-width: 769px){
	.main_footer_img{
		padding: 150px 10px;
	}
}



.main_footer_logo{
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}




.link_area{
	margin:1em auto;
	width: 90%;
}
.link_area_head{
	margin-bottom: 0.5em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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);
	
	background: #704c4b;
	background: linear-gradient(45deg,rgba(112, 76, 75, 1) 16%, rgba(196, 155, 155, 1) 96%);
	
	color: #fff;
	font-size:2em;
	
	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-image: url('../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 (max-width: 769px){
	.floating_btn{
		font-size:5vw;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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;
	transition-timing-function: linear;
}
.swiper_event .swiper-slide{
	height: auto;
	padding: 0px 0px 30px 0px;
}
/* 画像のサイズ調整 */
.swiper_event .swiper-slide img {
	height: auto;
	width: 100%;
}
/* ページネーションの色変更 */
.swiper_event .swiper-pagination-bullet{
	background-color: #999;
}
.swiper_event .swiper-pagination-bullet-active {
  background-color: #b2978b;
}
/*スライダーアイテムのカスタム*/
.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;
}
