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

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;900&family=Noto+Sans+JP:wght@400;700&display=swap');

/*Adobe Handwriting Ernie*/
@import url("https://use.typekit.net/euf7gvp.css");
/*
font-family: adobe-handwriting-ernie, sans-serif;
font-weight: 400;
font-style: normal;
*/

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

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

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.ポイント
5.身長別チャート&カラバリ

8.フッター



*/

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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-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: #fcfbf8;*/
	color: #362e26;
}

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	/*font-size:1.3rem;*/
	line-height: 1.5;
	letter-spacing: 0.07em;
	/*font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;*/
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 500;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

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

/*PC900px、SP100%*/
.js-container{
	width:980px;
	margin:auto;
}
@media screen and (max-width: 768px){   
	.js-container{
		width:90%;
	}
}


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

/*ボタン*/
.btn01 {
  display: inline-block;
  padding: 1em 5em;
  color: #e86073;
	font-weight: bold;
  border-radius: 5px;
  background-color: #fffaf4;
  border: 1px #e86073 solid;
  cursor: pointer;
  margin: 0.8em 5px;
}
/*.btn01:hover {
  color: #fff;
  background-color: #e86073;
  border: 1px #fffaf4 solid;
}*/



/*ボタン枠のみ*/
.btn_line{
	border:1px solid #fff;
	background-color: transparent;
	padding: 0.5em 3em;
	font-size:0.7em;
	margin-left:0;
}
/*ボタン枠のみ　黒*/
.btn_line_bk{
	border:1px solid #504b46;
	background-color: transparent;
	padding: 0.8em 4em;
	font-size:1.1em;
	margin-left:0;
	color:#362e26;
	display: inline-block;
	font-weight: 400;
	letter-spacing: 0.15em;
}
.arrow {
	position: relative;
	display: inline-block;
}
.arrow:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #362e26;
  border-right: solid 2px #362e26;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0.7em;
  bottom: 0;
  margin: auto;
}
.arrow p {
	color: #fff;
}


/*小さいver*/
.btn-small{
	font-size:0.8em;
	padding: 0.5em 3em;
	margin-top:-1em;
}
@media screen and (max-width: 768px){
	.btn01{
		 padding: 1em 6em;
		border-radius: 8px;
		font-size: 0.9em;
	}
	.btn-small{
		 padding: 0.1em 2em;
	}
	.btn_line_bk{
		padding: 0.8em 5.5em;
		font-size:0.9em;
		letter-spacing: 0.25em;
	}
	.arrow:before {
	  width: 7px;
	  height: 7px;
	  right: 0.5em;
	}
}
/*メニュー用*/
.btn-menu{
	font-size:0.1em;
	padding: 0.5em;
	width:60%;
}
@media screen and (max-width: 768px){
	.btn-menu{
		font-size:0.5em;
		padding: 0.5em;
		width:90%;
	}
}
/*Paganiniフォント*/
.font_serif {
	font-family: baskerville-display-pt, serif;
	font-weight: 400;
	font-style: normal;
}
/*Futura PTフォント*/
.font_sunserif {
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #b6b2ad;
	letter-spacing: 0.3em;
}
.main-margin {
	margin: 3em auto;
	padding: 1em 0;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
3.メインテキスト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.main-text-logo {
	width: 260px;
	margin: 0 auto;
}
.main-text-logo img {
	width: 100%;
}
.main-text-box {
	padding: 6em 0;
	border-top: 1px solid #504b46;
}
.main-text-en {
	font-size: 2.8em;
	line-height: 1.2;
}
.main-text-ja {
	font-size: 1.9em;
	line-height: 1.2;
	margin: 3.5em auto 0.7em;
	font-weight: 400;
}
.main-menu-title {
	font-size: 1.2em;
	padding-bottom: 0.5em;
}
.main-menu-item {
	font-size: 1.6em;
	font-weight: 400;
	line-height: 1.6;
}
.main-menu-item a {
	color: #362e26;
}

.vl {
	width: 0.5px;
	margin: 30px auto;
	height: 50px;
	background-color: #948f8a;
}
@media screen and (max-width: 768px){
	.main-text-logo {
		width: 40%;
		margin: 0 auto;
	}
	.main-text-logo img {
		width: 100%;
	}
	.main-text-box {
		padding: 3em 0 4em;
	}
	.main-text-en {
		font-size: 1.5em;
	}
	.main-text-ja {
		font-size: 1.3em;
		margin: 2em auto 1em;
	}
	.main-menu-title {
		font-size: 1em;
		padding-bottom: 0.8em;
	}
	.main-menu-item {
		font-size: 1.5em;
	}


}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.アイテムピック
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.item-pick img{
	width:100%;
}

.item-pick-inner img {
	width: 100%;
}
.item-pick-inner {
	width: 600px;
	margin: 0 auto;
}
.img_under_text{
	color:#5e5e5e;
	margin-top:-0.2em;
	font-size:0.7em;
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.item-pick_link {
	font-size: 0.75em;
	line-height: 1.7;
}
@media screen and (max-width: 768px){
	.item-pick-inner {
		width: 100%;
		margin: 0 auto;
	}
	.item-pick_link {
		font-size: 0.75em;
	}
}

.item-pick_A {
	width: 100%;
	height: 0;
	position: relative;
	padding-top: 208.77%;/*横980px 高さ2046px*/
}
.item-pick_A > div{
	position: absolute;
	height: auto;
}
.item-pick_A-01 {
	width: 71.326%;
	top: 0;
	left: 0;
	z-index: 100;
}
.item-pick_A-02 {
	width: 78.775%;
	top: 7.966%;
	left: 10.6125%;
	z-index: 90;
}
.item-pick_A-03 {
	width: 51.836%;
	top: 58.748%;
	left: 0;
}
.item-pick_A-04 {
	width: 40.510%;
	bottom: 0;
	right: 0;
}


.item-pick_B {
	width: 100%;
	height: 0;
	position: relative;
	padding-top: 208.265%;/*横980px 高さ2041px*/
}
.item-pick_B > div{
	position: absolute;
	height: auto;
}
.item-pick_B-01 {
	width: 76.632%;
	top: 0;
	left: 0;
	z-index: 100;
}
.item-pick_B-02 {
	width: 78.775%;
	top: 8.035%;
	left: 10.6125%;
	z-index: 90;
}
.item-pick_B-03 {
	width: 51.836%;
	top: 58.848%;
	right: 0;
}
.item-pick_B-04 {
	width: 40.510%;
	bottom: 0;
	left: 0;
}


.item-pick_C {
	width: 100%;
	height: 0;
	position: relative;
	padding-top: 213.877%;/*横980px 高さ2096px*/
}
.item-pick_C > div{
	position: absolute;
	height: auto;
}
.item-pick_C-01 {
	width: 76.836%;
	top: 0;
	left: 0;
	z-index: 100;
}
.item-pick_C-02 {
	width: 78.775%;
	top: 7.872%;
	left: 10.6125%;
	z-index: 90;
}
.item-pick_C-03 {
	width: 57.857%;
	top: 57.748%;
	left: 0;
}
.item-pick_C-04 {
	width: 35.612%;
	bottom: 0;
	right: 0;
}

.item-pick_D {
	width: 100%;
	height: 0;
	position: relative;
	padding-top: 208.77%;/*横980px 高さ2046px*/
}
.item-pick_D > div{
	position: absolute;
	height: auto;
}
.item-pick_D-01 {
	width: 71.632%;
	top: 0;
	left: 0;
	z-index: 100;
}
.item-pick_D-02 {
	width: 78.775%;
	top: 7.966%;
	left: 10.6125%;
	z-index: 90;
}
.item-pick_D-03 {
	width: 51.836%;
	top: 58.748%;
	right: 0;
}
.item-pick_D-04 {
	width: 40.510%;
	bottom: 0;
	left: 0;
}


.item-pick_text {
	padding: 3em 0 5em;
}
.text-box01 {
	font-size: 0.8em;
	text-align: left;
	line-height: 1.8;
	padding: 0 10%;
}
.text-box02 {
	font-size: 0.75em;
	text-align: center;
	line-height: 1.7;
	margin: 3.5em auto 0.5em;
}
.text-box02 span {
	font-size: 0.5em;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.バリエーション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.item_variation{
	width:90%;
	margin: 3em auto;
}
.item_variation img{
	width:100%;
}
.item_variation_t{
	text-align: center;
	margin-bottom:0.8em;
	/*border-bottom: 1px solid #000;*/
	/*font-family: serif;*/
	font-size:0.9em;
	font-weight:bold;
}

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

	text-align: left;
}
.item_variation_item{
	width:33%;
	padding-right:10px;
}
.item_variation_item img{
	width:100%;
}
@media screen and (max-width: 768px){
	.item_variation_box{
		margin-bottom: 1.5em;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.カテゴリリンク
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.contents-link_allitem{
	margin-bottom:5em;
}

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

	text-align: left;
	margin:0 auto 2em;
	width:90%;
	background-color: #fffaf4;
}
.contents-link_allitem_img{
	width:30%;
	line-height: 0;
}
.contents-link_allitem_img img{
	width:100%;
	object-fit: cover;
}
.contents-link_allitem_txt{
	width:70%;
	text-align: center;
	color:#363229;
}
.contents-link_allitem_txt .txt01{
	font-family: serif;
	font-size:1.5em;
}
.contents-link_allitem_txt .txt02{
	font-weight: lighter;
	font-size:0.8em;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.swiper
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.main-slider{
	margin:1em auto;
	/*width:600px;*/
	position: relative;
}

@media screen and (max-width: 768px){
	/*.main-slider{
		width:90%;
	}*/
}
.main-slider-inner {
	width: 580px;
	margin: 0 auto;
}
.swiper img{
	width:100%;
}
.swiper video {
	width: 100%;
}

/*縦横比率固定*/
/*.swiper {
    position: relative;
    width: 100%;
}*/
.swiper:before {
    content:"";
    display: block;
    /*padding-top: 100%; *//* 高さを幅の75%に固定 */
}
/*.swiper-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}*/

/*.swiper-button-next {
	top:50%;
	right: 0;
}*/

/*他カスタマイズ*/
.swiper-button-next:after ,.swiper-button-prev:after{
	color:#747474;
	
	font-size:1em;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block
}

.slider1 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block
}
.slider2 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block
}



@media screen and (max-width: 768px){
	.swiper-button-next:after ,.swiper-button-prev:after{
		font-size:10px;
	}
	.main-slider [class^="swiper-button-prev"]::after {
		font-size:30px;
	}
	.main-slider [class^="swiper-button-next"]::after {
		font-size:30px;
	}
	.main-slider-inner {
		width: 70%;
		margin: 0 auto;
	}

}


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

.footer{
	
}
.footer-inner {
	/*border-top: 1px solid #504b46;*/
	margin-bottom: 0;
	padding-top:4em;
	padding-bottom:7em;
}
.footer a {
	color: #d76b45;
	display: inline-block;
}
.footer-logo{
	width:200px;
	display: block;
	margin: 0 auto 1.5em;

}
/*.footer .btn_line_bk {
	border:1px solid #fff;
	color:#fff;
}*/


@media screen and (max-width: 768px){
	.footer-inner {
		margin-top: 2em;
		margin-bottom: 0;
		padding-top:2em;
		padding-bottom:2em;
	}

	/*.footer img{
		width:50%;
	}*/

	.footer{
		padding-top:0;
		padding-bottom:5em;
	}
}




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



/*下から*/
/*.fadein {
	opacity : 0;
	transform: translateY(50px);
	transition: all 1s;
	-moz-transform: translateY(50px);
	-webkit-transform: translateY(50px);
	-o-transform: translateY(50px);
	-ms-transform: translateY(50px);
}*/



.scroll-space{
  box-sizing: border-box;
  padding-top: 300px;
  height: 1600px;
  color: #fff;
  overflow: hidden;
}
.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
  &.fadein-left{
      transform: translate(-30px,0);
  }
  &.fadein-right{
      transform: translate(30px,0);
  }
  &.fadein-up{
      transform: translate(0,-30px);
  }
  &.fadein-bottom{
      transform: translate(0,30px);
  }
  &.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}















