@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');

/*================================
目次
================================

■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;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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.5;
	letter-spacing: 0.07em;
	font-family:'Lato','Noto Sans JP','Helvetica Neue', Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans', Meiryo, sans-serif;
	font-weight: 400;
}
@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:100%;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
2.共通フォーマット（ボタンデザインなど）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ボタン*/
.btn01 {
  display: inline-block;
  padding: 0.4em 4em;
  color: #000;
  /*border-radius: 25px;*/
  background-color: #ffffff;
  border: none;
  margin: 1em 0.5em 0em 0.5em;
}
/*ボタンgray*/
.btn_gray{
	background-color: #353535;
}
/*ボタンpink*/
.btn_pink{
	background-color: #ca7a7a;
}
/*ボタンyellow*/
.btn_yellow{
	display: inline-block;
  padding: 0.4em 4em;
  color: #000;
  /*border-radius: 25px;*/
  background-color: #FFFEC7;
  border: none;
  cursor: pointer;
  margin: 1em 0.5em 0em 0.5em;
}
/*ボタン枠のみ*/
.btn_line{
	border:1px solid #000;
	background-color: transparent;
	padding: 0.5em 3em;
	font-size:0.7em;
	margin-left:0;
}
/*小さいver*/
.btn-small{
	font-size:0.8em;
	padding: 0.5em 3em;
	margin-top:-1em;
}
@media screen and (max-width: 768px){
	.btn01{
		 padding: 0.1em 3em;
	}
	.btn-small{
		 padding: 0.1em 2em;
	}
}
/*メニュー用*/
.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%;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
3.メインビジュアル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-visual{
	margin-bottom:0;
	width:100%;
	background-color: #fbf9f7;
	line-height: 0;
}

h1{
	margin:0;
	line-height: 0;
}

.main-text{
	margin:4em;
	font-size:0.9em;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.メニュー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.itemmenu{
	margin-top:0;
	width:100%;
}
.itemmenu-title{
	background-color: #b3b3b3;
	padding-top: 1em;
	padding-bottom: 1em;
	font-weight: bold;
	letter-spacing: 0.4em;
	color:white;
}
.itemmenu-area{
	margin-top:0;
	background-color: #eff0f1;
	padding-top: 2.5em;
	padding-bottom: 2.5em;
}
.itemmenu-flexbox{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;	
}
.itemmenu-item{
	padding:2%;
	width:15%;
}
.itemmenu-item img{
	width:100%;
}
.itemmenu-item .date{
	font-size:0.8em;
	font-weight: bold;
}
/*SP*/
@media screen and (max-width: 768px){   
	.itemmenu-title{
		font-size:0.8em;
	}
	.itemmenu-area{
		padding-top: 1em;
		padding-bottom: 1em;
	}
	.itemmenu-item{
		
		padding:1em 2%;
		width:30%;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.アイテム
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*全体*/
.item-box{
	margin:200px auto 50px;
	
}
@media screen and (max-width: 768px){
	.item-box{
		margin:8em auto 4em;
	}
}
/*タイトル*/
.item-box_t{
	
}
.item-t img{
	margin:auto;
	height:50px;
	width:auto;
}
.item-t_img img{
	height: 200px;
	width:auto;
}
.item-t_text{
	margin-top:1.5em;
	font-size:1.15em;
	font-weight: 900;
	letter-spacing: 0.15em;
}
.item-t_price{
	margin-top:0.5em;
}
@media screen and (max-width: 768px){
	.item-t img{
		width:auto;
	}
	.item-t_img img{
		height: 120px;
	}
	.item-t_text{
		font-size:0.8em;
	}
	.item-t_price{
		font-size:0.6em;
	}
}

/*タイトル2*/
.item-box_t2{
	
}
.item-t2 img{
	margin:auto;
	width:550px;
	height: auto;
}
.item-t_img2 img{
	height: 200px;
	width:auto;
}
.item-t_text2{
	margin-top:1.5em;
	font-size:1.15em;
	font-weight: 900;
	letter-spacing: 0.15em;
}
.item-t_price2{
	margin-top:0.5em;
}
@media screen and (max-width: 768px){
	.item-t2 img{
		width:90%;
	}
	.item-t_img2 img{
		height: 120px;
	}
	.item-t_text2{
		font-size:0.8em;
	}
	.item-t_price2{
		font-size:0.6em;
	}
}

/*画像*/
.item-image{
	margin-top:3em;
}
.item-image img{
	width:100%;	
}
.item-img01{
	margin:auto;
	width:75%;
}
.item-img02{
	margin-top:5em;
}
@media screen and (max-width: 768px){
	.item-image{
		margin-top:1.5em;
	}
	.item-img01{
		width:90%;
	}
	.item-img02{
		margin-top:2em;
	}
}
/*item02*/
.item02 .item-img02{
	margin:auto;
	width:60%;
}
.item02 .item-img03{
	margin:3em auto 0;
	width:80%;
}
@media screen and (max-width: 768px){
	.item02 .item-img03{
		width:100%;
	}
}
/*item04*/
.item04 .item-img02{
	margin:auto;
	width:75%;
}
@media screen and (max-width: 768px){
	.item04 .item-img02{
		width:90%;
	}
}

/*コメント*/
.item-comment{
	margin:4em auto 2em;
	padding:3em;
	border:4px solid #000;
	text-align: left;
	width:600px;
}
.comment-icon{
	margin-top:-5.3em;
	text-align: center;
}
.comment-icon .img{
	width:300px;
}
.item-comment_textarea{
	margin-top:1em;
}
.comment-heading{
	font-size:1.4em;
	font-weight: 700;
}
.comment-text{
	margin-top:1.2em;
	font-size:0.85em;
	line-height: 1.8;
}
@media screen and (max-width: 768px){
	.item-comment{
		margin:4em auto 2em;
		padding:8%;
		width:90%;
		
		font-size:0.8em;
	}
	.comment-icon{
		margin-top:-7em;
	}
	.comment-icon .img{
		width:100%;
	}
}
/*footer BUY*/
.footer-buy{
	margin:3em auto 1em auto;
}
.footer-buy_text .text01{
	font-size:1.5em;
	font-weight: 400;
	letter-spacing: 0.15em;
}
.footer-buy_text .text02{
	font-size:0.8em;
}
@media screen and (max-width: 768px){
	.footer-buy{
		font-size:1em;
	}
}
/*coordinate item*/
.coordinate-item{
	margin-top:1em;
	padding-top:1em;
	padding-bottom:1em;
	width:100%;
	
	text-align: left;
	color:#000;
}
.ci-box{
}
.ci-box .left{
}
.ci-box .left img{
	width:100%;
}
.ci-box .right{

}
.coordinate-item .ci-heading{
	font-weight: 400;
	font-family: cursive;
}
.coordinate-item .ci-text01{
	margin-top:0.9em;
	font-size: 0.7em;
	line-height: 2em;
}
.coordinate-item .ci-text02{
	margin-top:1.2em;
	font-size: 0.7em;
	line-height: 1.7;
}

@media screen and (min-width: 768px){
	.ci-box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
   	 	display: flex;
   	 	-webkit-flex-wrap: wrap;
    	flex-wrap: wrap;
		/*フレックスボックスの要素を中央寄せ*/
		justify-content: center;
	}
	.coordinate-item .ci-box .left{
		padding-left:5%;
		width:35%;
	}
	.ci-box .right{
		padding-left:5%;
		width:50%;

	}
}
@media screen and (max-width: 768px){
	.coordinate-item{
		margin-top:2em;
	}
	.ci-box{
		width:80%;
		margin:auto;
	}
	.ci-box .right{
		text-align: center;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.プロフィール
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.profile{
	margin: 4em auto ;
	padding:2em;
	width:60%;
	border-top:2px solid black;
	border-bottom:2px solid black;
}
.profile_t{
	font-weight:bold;
	letter-spacing: 0.2em;
}
.profile_img{
	margin: 1em auto 0;
	width:60%;
}
.profile_img img{
	width:100%;
}
.profile_box{
}
.profile_name{
	margin-top:1em;
	font-weight:bold;
	text-align: left;
	font-size:0.8em;
}
.profile_text{
	margin:1em auto 2em;
	text-align: left;
	font-size:0.6em;
}

@media screen and (max-width: 768px){
	.profile{
		width:90%;
		margin: 1em auto ;
	}
}

@media screen and (min-width: 768px){
	.profile_box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
    	display: flex;
    	-webkit-flex-wrap: wrap;
    	flex-wrap: wrap;
		/*フレックスボックスの要素を中央寄せ*/
		justify-content: center;
		
		width:80%;
		margin:auto;
		padding:2em;
	}
	.profile_img{
		width:30%;
	}
	.profile_textbox{
		padding-left:2em;
		width:70%;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.outer_footer{
	margin-bottom: 0;
	padding-top:5em;
	padding-bottom:8em;
	background-color: #fff;
	margin-bottom: -30px;
	width:100%;
}
.footer-logo img{
	width:300px;
}
@media screen and (max-width: 768px){
	.footer-logo img{
		width:50%;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.追加
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.flex1 {
  flex-flow: row-reverse;
}


/*coordinate item2*/
.coordinate-item2{
	margin-top:0.5em;
	padding-top:0.5em;
	padding-bottom:0.5em;
	width:100%;
	
	text-align: left;
	color:#fff;
}
.ci-box{
}
.ci-box .left{
}
.ci-box .left img{
	width:100%;
}
.ci-box .right{
	
}
.coordinate-item .ci-text01{
	margin-top:0.9em;
	font-size: 0.7em;
	color:darkblue;
	text-decoration:underline;
}
.coordinate-item .ci-text02{
	margin-top:1.2em;
	font-size: 0.7em;
	line-height: 1.7;
}
.coordinate-item2 .ci-text03{
	color:#000;
	margin-top:0.5em;
	font-size: 0.7em;
	line-height: 1.7;
}


@media screen and (min-width: 768px){
	.ci-box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
   	 	display: flex;
   	 	-webkit-flex-wrap: wrap;
    	flex-wrap: wrap;
		/*フレックスボックスの要素を中央寄せ*/
		justify-content: center;
	}
	.coordinate-item2 .ci-box .left{
		padding-left:5%;
		width:25%;
	}
	.ci-box .right{
		padding-left:5%;
		width:50%;
	}
	.ci-box .right2{
		padding-left:5%;
		width:50%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
@media screen and (max-width: 768px){
	.coordinate-item2{
		margin-top:2em;
	}
	.ci-box{
		width:70%;
		margin:auto;
	}
	.coordinate-item2 .left{
		width:60%;
		margin:auto;
	}
}


/*coordinate item3*/
.coordinate-item3{
	width:100%;
	padding-top:1em;
	padding-bottom:1em;
	background-color: #E8E8E8;
	
	text-align: left;
	color:#000;
}
.ci-box{
}
.ci-box .left{
}
.ci-box .left img{
	width:100%;
}
.ci-box .right{
	
}

.coordinate-item3 .ci-text01{
	margin-top:0.9em;
	font-size: 0.7em;
}
.coordinate-item3 .ci-text02{
	margin-top:1.2em;
	font-size: 0.7em;
	line-height: 1.7;
}


@media screen and (min-width: 768px){
	.ci-box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
   	 	display: flex;
   	 	-webkit-flex-wrap: wrap;
    	flex-wrap: wrap;
		/*フレックスボックスの要素を中央寄せ*/
		justify-content: center;
	}
	.coordinate-item3 .ci-box .left{
		padding-left:5%;
		width:25%;
	}
	.coordinate-item3 .ci-box .right{
		padding-left:5%;
		width:50%;
	}
}
@media screen and (max-width: 768px){

	.ci-box{
		width:80%;
		margin:auto;
	}
	.coordinate-item3 .left{
		width:60%;
		margin: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);
}