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

/*google fonts*/

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

■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-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 { 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: #fff;
}

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

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


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

/*ボタン*/
.button019 a {
    background: #fff;
    /*border-radius: 3px;*/
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #6b6b6b;
    transition: 0.3s ease-in-out;
    /*font-weight: 500;*/
	border:solid 1px #6b6b6b;
}
.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: #6b6b6b;
  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: 100px auto;
}
@media screen and (max-width: 768px){
	.main-margin{
		margin: 4em auto;
	}
}

/*見出し*/



/*背景色*/
.bg-color01{
	background: #fff;
}


/*テキスト色*/
.font-color01{ /**/
	color:#db7e76;
}

/*フォント*/
/*フォント指定*/
.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;
}

.bold{ /*太字*/
	font-weight: bold;
}


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

.main-visual{
	margin: 0 auto;
	width:100%;
	max-width: 1200px;
	background-color: #fff;
	line-height: 0;
}
.main-visual img {
	width:100%;
}

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

.main-visual_title{
	margin: 150px auto;
	width:70%;
	max-width:472px;
}

/*SP*/
@media (max-width: 768px) {
	.main-visual_title{
		margin: 4em auto;
	}
	
}


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


.item_set{
	width: 100%;
	height: 0;
	position: relative;
	
	text-align: left;
}
.item_set > div{
	position: absolute;
	height: auto;
}

.item_set img{
	width:100%;
}
.item_set .img_under_link,
.item_set_catch .img_under_link{
	color:#a1a1a1;
	margin-top:-0.3em;
	font-size:0.6em;
}
.item_set .img_under_link a{
	text-decoration: underline;
}


/*中見出し*/
.item_medium_heading{
	display: inline-block;
	border-bottom:1px solid #6b6b6b;
	padding: 0 0.5em;
	margin: 200px auto 50px;
	font-size:1.3em;
	letter-spacing: 0.2em;
}
@media (max-width: 768px) {
	.item_medium_heading{
		margin: 7em auto 0;
		font-size:1em;
	}
}


/*キャッチ*/
.item_set_catch{
	text-align: left;
}
.item_set_catch img{
	width:100%;
}
.item_set_catch .img_under_link a{
	text-decoration: underline;
}

/*セットA*/
.item_set_A{
	padding-top: 237.755102%;/*横980px 高さ2330px*/
}
.item_set_A_01{
	width: 47.1428%;
	top: 0;
	left: 3.4693%;
}
.item_set_A_02{
	width: 39.4897%;
	top: 10.4721%;
	right: 8.9795%;
}
.item_set_A_03{
	width: 61.8367%;
	top: 37.6394%;
	left: 8.3673%;
}
.item_set_A_04{
	width: 78.7755%;
	bottom: 0%;
	right: 0%;
}
.item_set_A_txt{
	width: 20.4081%;
	top: 31.7596%;
	left: 8.3673%;
}
@media (max-width: 768px) {
	.item_set_A{
		padding-top: 280%;/*横980px*/
	}
	.item_set_A_03{
		width: 75%;
	}
	.item_set_A_txt{
		width: 25%;
		top: 31.7596%;
		left: 8.3673%;
	}
}


/*セットB*/
.item_set_B{
	padding-top:281.020408%;/*横980px 高さ2754px*/
}
.item_set_B_01{
	width: 36.7346%;
	top: 0;
	left: 0;
}
.item_set_B_02{
	width: 36.7346%;
	top: 0%;
	left: 37.7551%;
}
.item_set_B_03{
	width: 34.693878%;
	top: 21.4960006%;
	right: 8.3673%;
}
.item_set_B_04{
	width: 64.081633%;
	top: 36.74655%;
	left: 19.0816%;
}
.item_set_B_05{
	width: 52.653061%;
	top: 72.766885%;
	left: 7.755102%;
}
.item_set_B_06{
	width: 28.163265%;
	bottom: 0;
	left: 63.877551%;
}
.item_set_B_txt{
	width: 3.6734%;
	top: 26.579521%;
	left: 10.204%;
}
@media (max-width: 768px) {
	
}





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

.contents-footer{
	
}

/*タイトルロゴ*/
.contents-footer_title{
	
}
/*PC*/
@media (min-width: 769px) {
	.footer_title_box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		/*フレックスボックスの要素の寄せ*/
		justify-content: center;
		align-items: flex-end;
		
		width:90%;
		max-width:980px;
		margin-left: auto;
		margin-right: auto;
	}
	.footer_title_box img{
		width:100%;
	}
	.footer_title01{
		width:50%;
	}
	.footer_title02{
		width:50%;
	}
}
/*SP*/
@media (max-width: 768px) {
	.footer_title_box{
		width:70%;
		margin-left: auto;
		margin-right: auto;
	}
	.footer_title02{
		margin-top:2em;
		
	}
}

/*線*/
.contents-footer_line{
	width:1px;
	height:150px;
	background-color: #ccc;
	margin:auto;
}

/*ロゴ*/
.contents-footer_logo{
	margin-left: auto;
	margin-right: auto;
	width:200px;
	max-width: 40%;
}
.contents-footer_logo img{
	width:100%;
}


/*リンク*/
.contents-footer_link{
	width:80%;
	max-width:500px;
}
.contents-footer_link img{
	width:100%;
}
.contents-footer_link_text{
	font-size:0.9em;
	margin-bottom:0.5em;
}

.contents-footer_link_img{
	margin-bottom:1em;
}


/*2列*/
.contents-footer_link_2clm{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;
	
	text-align: left;
	margin: 0 auto;
	max-width:700px;
	width:100%;
}
.contents-footer_link_2clm > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 10px ) / 2 );
	margin-right: 10px;
}
/*右端のマージンをゼロ設定*/
.contents-footer_link_2clm > div:nth-child( 2n ),
.contents-footer_link_2clm:last-child {
	margin-right: 0;
}
.contents-footer_link_2clm_item{
	padding-bottom:10px;
}
.contents-footer_link_2clm_item img{
	width:100%;
}
@media (max-width: 768px) {
	.contents-footer_link_2clm{
		
	}
	.contents-footer_link_2clm > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 2vw ) / 2 );
		margin-right: 1vw;
	}
	.contents-footer_link_2clm > div:nth-child( 2n ) {
		margin-right: 0;
	}
}


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



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