@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: #222222;
}

/*全体の設定/フォントなど*/
.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:'Noto Sans JP','Helvetica Neue', Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans', Meiryo, 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 {
	width: 50%;
  display: inline-block;
  padding: 0.7em 0;
  color: #fff;
  /*border-radius: 10px;*/
  background-color: #f16a40;
  border: 1px #f16a40 solid;
  cursor: pointer;
  margin: 0.5em auto;
}
/*ボタンgray*/
.btn_gray{
	background-color: #353535;
}
/*ボタンpink*/
.btn_pink{
	background-color: #ca7a7a;
}
/*ボタンpink2*/
.btn_pink2{
	background-color: #e88a8a;
}
/*ボタンyellow*/
.btn_yellow{
	background-color: #d1ac65;
}
/*ボタンgold*/
.btn_gold{
	background-color: #af9578;
}
/*ボタン枠のみ*/
.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{
		width: 80%;
		padding: 0.9em 0;
		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-padding {
	padding: 5em 0;
}


.bg-color01 {
	background-color: #fefcf8;
}
.font01 {
	font-family: "Gilda Display", serif;
	font-weight: 400;
	font-style: normal;
}

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

.main-visual{
	margin-bottom:0;
	width:100%;
	background-color: #fefcf8;
	line-height: 0;
}
.main-visual img {
	width:100%;
	max-width: 980px;
}

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

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロダクション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-intro{
	/*margin-top:80px;*/
	font-size:0.9em;
	line-height: 2;
}


/*メニュー*/
.main-menu{
	margin:80px auto;
	width:100%;

	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
	align-items: center;
}
.main-menu_item{
	width:25%;
	padding:10px;
}
@media screen and (max-width: 768px){
	.main-menu_item{
		width:90%;
	}
}


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


}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.スタイル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.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-inner p {
	font-size: 0.7em;
}
.item-pick-inner p span {
	font-size: 0.8em;
}

.item-pick_A {
	width: 100%;
	height: 0;
	position: relative;
	padding-top: 185.096%;/*横1040px 高さ1925px*/
}
.item-pick_A > div{
	position: absolute;
	height: auto;
}
.item-pick_A-01 {
	width: 55.288%;
	top: 0;
	left: 0;
}
.item-pick_A-02 {
	width: 38.461%;
	top: 21.662%;
	right: 0;
}
.item-pick_A-03 {
	width: 65.307%;
	top: 53.350%;
	right: 17.3465%;
}
.item-pick_A-01 p {
	text-align: left;
	padding-left: 7px;
}
.item-pick_A-02 p {
	text-align: right;
	padding-right: 7px;
}
.item-pick_A-03 p {
	text-align: left;
}
@media screen and (max-width: 768px){
	.item-pick-inner p {
		font-size: 0.6em;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.アイテムピック
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.item_point {
	margin: 2em auto 4em;
}
.item-container-inner {
	width: 600px;
	margin: 0 auto;
}
.item-container-inner img {
	width: 100%;
}

.point_container {
	position: relative;
	background-color: #ffeae4;
	padding: 0.3em 1.1em;
	display: inline-block;
	margin: 1em auto 2em;
}
.pointtxt01 {
	font-size: 1.4em;
}
.pointtxt02 {
	/*font-size: 0.9em;*/
	line-height: 2;
}
.pointimg {
	width: 80px;
	position: absolute;
	top: -20px;
	left: -30px;
}
.pointimg img {
	width: 100%;
}

.point_container2 {
	display: flex;
	align-items: center;
}
.point_container_txt {
	width: 55%;
	padding: 0 3% 3%;
	line-height: 2;
	/*font-size: 0.9em;*/
	text-align: left;
}
.point_container_img {
	width: 45%;
	padding: 0 3% 3%;
}


@media screen and (max-width: 768px){
	.item_point {
		margin: 2em auto 2em;
	}
	.item-container-inner {
		width: 90%;
		margin: 0 auto;
	}
	.pointtxt02 {
		font-size: 0.8em;
	}
	.point_container_txt {
		font-size: 0.7em;
	}
	.pointtxt01 {
		font-size: 1.1em;
	}
	.pointimg {
		width: 70px;
		position: absolute;
		top: -18px;
		left: -25px;
	}

}


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

.contents-footer{
	margin:4em auto;
}
.contents_brand_top{
	margin:3em auto;
}
.brand_under-text{
	margin-top:1em;
}

/*SP*/
@media (max-width: 768px) {
	.contents_brand_top{
		width:50%;
	}
}


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


.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;
	background-color: #b9b9b9;
	width:90%;
}
.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:#fff;
}
.contents-link_allitem_txt .txt01{
	font-family: serif;
	font-size:1.5em;
}
.contents-link_allitem_txt .txt02{
	font-weight: lighter;
	font-size:0.8em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
9.リンクエリア
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-link{
	padding-top:50px;
	padding-bottom:50px;
	width:100%;
	background-color: #f0f0f0;
}

.contents-link_t{
	margin-bottom: 2em;
}
.contents-link_t .t01{
	display: inline-block;
	padding: 0 1em;
	background-color: #242424;
	color:white;
}
.contents-link_t .t02{
	padding-top:0.2em;
	font-size:0.8em;
}


/*リンクエリア：フレックスボックス*/
.contents-link_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;

	text-align: left;
	margin-bottom: 2em;
}
.contents-link_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 90px ) / 4 );
	margin-right: 30px;
}
/*右端のマージンをゼロ設定*/
.contents-link_box > div:nth-child( 4n ) {
	margin-right: 0;
}
.contents-link_boxitem{
	padding-bottom:30px;
}
.contents-link_boxitem img{
	width:100%;
}
@media (max-width: 768px) {
	.contents-link_box{
		padding:0 4vw;
	}
	.contents-link_box > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 1vw ) / 2 );
		margin-right: 1vw;
	}
	.contents-link_box > div:nth-child( 2n ) {
		margin-right: 0;
	}
}







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

}





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















