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

/*googlefonts*/
@import url('https://fonts.googleapis.com/css2?family=Amiri&display=swap');
/*
font-family: 'Amiri', serif;
*/

/*Adobefonts*/


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

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

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.イントロダクション
5.アイテム
6.プロフィール
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-l-main{
	font-size:1.1em;
}

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

/*自動生成商品エリアのマージンゼロ/余白が発生するため*/
.fs-c-productList{
	margin:0;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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;
	line-height: 2;
	letter-spacing: 0.04em;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 400;
	color:#000;
	font-size:12px;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

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

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

/*コンテンツ部分の背景色*/
.main-background{
	background-color: #eff1f2;
}



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

/*ボタン*/
.btn01 a {
    background: #fff;
	border:1px solid #000;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 350px;
    padding: 10px 25px;
    color: #000;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.btn01 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn01 a:hover {
  background: #000;
  color: #FFF;
	opacity:1;
    -moz-opacity:1;
    filter:alpha(opacity = 100);
}
.btn01 a:hover:after {
  right: 1.4rem;
}


.main-padding{
	padding-top:80px;
	padding-bottom:80px;
}
@media screen and (max-width: 768px){
	.main-padding{
		padding-top:60px;
		padding-bottom:60px;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
3.メインビジュアル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.main-visual{
	margin-bottom:0;
	width:100%;
	background-color: #f2f2f2;
	line-height: 0;
}

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


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

.main-intro{
	background-color: #f2f2f2;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.ラインナップ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-lineup{

}

.lineup_t{
	width:340px;
	max-width:80%;
	margin: 0 auto 30px;
}
.lineup_t img{
	width:100%;
}

.lineup_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
}
.lineup_in{
	width:15%;
	position: relative;
}
@media screen and (max-width: 768px){
	.lineup_box{
		width:90%;
		margin:auto;
	}
	.lineup_in{
		width:33%;
	}
}

.lineup_in img{
	width:100%;
}

.lineup_txt{
	padding: 0 10px 30px;
	font-size:0.8em;
	line-height:1.4;
}

/*NEWアイコン*/
.new_icon_box{
	position: absolute;
	top: 0;
  	right: 5%;
}
.new_icon{
    border-radius: 15%;
	color: #fff;
    background: #ff9625;
	text-align: center;
	font-size:0.5em;
	padding: 0.1em 0.5em 0em 0.7em;
}


/*～～～詳細検索～～～*/

.search-all_wrapper{
	margin-top:30px;
}

.search-all_upper_text{
	font-size:1.25em;
	font-weight:700;
}

.search-all{

}

/*アコーディオン*/
.acbox_search{
  width: 90%;
  font-size:0px; /* ラベルと開く部分を分離する時は数値を入れる */
  margin:0 auto; /* ボックス全体の位置調整 */
}
@media screen and (max-width: 768px){
	.acbox_search{
		width: 90%;
	}
}
.acbox_search>label{
  width: auto;
  font-size: 15px; /* ラベルの文字サイズ */
  font-weight: 500;
  text-align: center;
  background: #ff9625; /* ラベルの背景色 */
  position: relative;
  display: block;
  padding:8px;
  border:solid 1px #ff9625;
  border-radius: 5px; /* ラベルの角の丸み */
  cursor: pointer;
  color: #fff;
　
　/*スクロール中ラベル固定*/
　position: -webkit-sticky; /* Safariに対応する */
  position: sticky; /* 要素を固定/解除する */
  top: 0; /* 縦方向の閾値 */
  left: 0; /* 横方向の閾値 */
}
.acbox_search>label:hover{
  background: #ff9625 ; /* ラベルにマウスを乗せた時の背景色 */
	color: #fff;
}
.acbox_search>input{
  display: none;
}
.acbox_search>label:after{
  color: #fff;
  content:"＋"; /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -14px;
}
.acbox_search>input:checked ~ label::after {
  content:"－"; /* ラベルをクリックした後のアイコン */
}
.acbox_search>div{
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s; /* 開閉スピードの設定 */
}
.acbox_search>input:checked ~ div{
  height: auto;
  padding: 18px; /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #fff; /* 開いた部分の背景色 */
  opacity: 1;
}
.acbox_search>input:checked ~ label {
  background: #ff9625; /* クリック後のラベルの背景色 */
  color: #fff;
  border-radius: 5px 5px 0 0; /* ラベルの角の丸み */
}
/*開いた部分*/
.acbox_search-under{
  font-size: 15px ; /* 開いた部分の文字サイズ/必須 */
  color: #555555; /* 開いた部分の文字色 */
}

/*開いた部分のフォームデザイン*/
.js-search{
	/*text-align: left;*/
}

.js-search_in{
	margin-top:20px;
}
/*見出し*/
.js-search .t01{
	font-size:1.25em;
}
/*中身*/
.js-search .inner{
	margin-top:15px;
}


/*ラジオボタン*/
/*ラジオボタンフレックス*/
.js-search_in .innner-box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
}
.js-search_in .innner-box label{
	width:18%;
}
/*SP*/
@media screen and (max-width: 768px){
	.js-search_in .innner-box label{
		width:45%;
	}
}

/*ボタンデザイン*/
.js-search_in .innner-box input{
}
.js-search_in .innner-box label {
	margin:5px;
	padding: 40px 10px;
	background-color: #d2d2d2;
	color:#fff;
	font-size:1.5em;
	border-radius: 5px;
	text-align: center;
}
.js-search_in .innner-box label:hover {
	cursor : pointer;
	background-color: #ee7575;
}
.js-search_in .innner-box input:checked + label {
	background-color: #ee7575;
	color:#fff;
}
.js-search_in .innner-box .radiobutton {
	display: none;
}

/*検索するボタン*/
.js-search button{
	/*スタイルリセット*/
	background: none;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	/*オリジナルデザイン*/
	padding-top:1em;
	padding-bottom:0.8em;
	margin-top:2em;
	width:300px;
	background-color: #222;
	font-size:1.25em;
	color:#fff;
}
.js-search button:hover{
	cursor : pointer;
	background-color: #ff9625;
}
/*SP*/
@media screen and (max-width: 768px){
	.js-search button{
		width:100%;
	}
}

/*SP*/
@media screen and (max-width: 768px){
	.js-search_length .inner{
		font-size:0.8em;
	}
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.チャート
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*～～～～チャート～～～～*/

.main-chart{
	width:100%;
	background-color: #f2f2f2;
}
.main-chart_in{

}

.chart_title{
	width:370px;
	max-width:80%;
	margin:auto;
}
.chart_title img{
	width:100%;
}
.chart_text{
	margin-top:30px;
	margin-bottom:30px;
	font-size:0.8em;
}

.main-chart_map{
	max-width:90%;
	margin:auto;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.アイテム SPベース
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-item{
	margin:0;
}
.main-item img{
	width:100%;
}


/*背景色など*/
#main-item01{
	background-color:#e7ccec;
}
#main-item01 .main-item_icon{
	border-color: #e7ccec;
}

#main-item02{
	background-color:#d7b7dd;
}
#main-item03{
	background-color:#c79ece;
}
#main-item04{
	background-color:#b88ac0;
}
#main-item05{
	background-color:#a76fb0;
}


.main-item_t{
	margin-bottom:30px;
}
.main-item_t_img{
	width:70px;
	max-width:20%;
	margin:auto;
}
.main-item_t_img img{
	width:100%;
}

.main-item_t_img2{

	max-width:700px;
	margin:auto;
}
.main-item_t_img2 img{
	width:100%;
}




.main-item_t_text{
	margin-top:20px;
	font-weight:700;
	font-size:1.2em;
}

/*大枠*/
.main-item_wrapper{
	max-width:95%;
	width:800px;
	margin: 3em auto 0;
	background-color:#fff;

	position: relative;
}

/*アイコン*/
.main-item_icon{
	position: absolute;
	top:-13px;
	left:10px;

	display: inline-block;
	padding : 0.15em 1em 0;

	color:#a76fb0;
	background-color: #fff;
	font-weight:bold;
	font-size:1.1em;

	border:solid 2px;
	border-radius: 20px;
}




.main-item_wrapper img{
	width:100%;
}



/*中身*/
.main-item_inbox{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content:center;

	padding:30px;
	text-align:justify;
}
.main-item_inbox01{
	width:30%;
}
.main-item_inbox02{
	width:70%;
}
@media screen and (max-width: 768px){
	.main-item_inbox{
		padding: 35px 5% 5%;
	}
}

.main-item_newicon{
	display: inline-block;
	background-color: #ff9625;
	color:#fff;
	padding: 0.2em 1em 0;
	margin-bottom:0.8em;
	border-radius: 3px;
	font-size:0.8em;
}
.main-item_name{
	border-bottom:solid 1px #000;
	font-weight:700;
	font-size:1.2em;
	line-height:1.3;
	padding-bottom:0.2em;
}
.main-item_size{
	margin-top:1em;
}

.color-chip{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: flex-start;

	margin-top:0.5em;
}
.color-chip div{
	width:15px;
	height:15px;
	margin-right:5px;
}

.main-item_text{
	margin-top:1.2em;
	line-height:1.6;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.一覧（FS）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-fs-all{
	padding:5em 0 0;
}
.contents-fs-all .fs-all_title{
	margin:auto;
	color:#000;
	font-size:2em;
	font-family: 'Amiri', serif;
}
/*SP*/
@media (max-width: 768px) {
	.contents-fs-all .fs-all_title img{
		width:90%;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.footer SPベース
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-footer{
	/*width:70%;*/
	margin: 8em auto 3em;
}
.contents-footer .img01{
	margin: auto;
	width:40%;
}
.contents-footer .link_btn{
	width:90%;
	margin: 2em auto 0;
}

/*PC*/
@media (min-width: 769px) {
	.contents-footer{
		margin: 300px auto 200px;
		/*width:500px;*/
	}
	.contents-footer .link_btn{
		width:170px;
	}
}

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