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

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

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

■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-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: Arial, "Hiragino Kaku Gothic ProN","Hiragino Sans","BIZ UDPGothic",Meiryo,sans-serif;
	font-weight: 400;
	color:#000;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#000;
}
.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:100%;
	max-width:980px;
	margin:auto;
}
@media screen and (max-width: 768px){   
	.js-container{
		
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
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: #000;
    transition: 0.3s ease-in-out;
    /*font-weight: 500;*/
	border:solid 1px #000;
}
.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: #000;
  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;
	}
}

/*見出し*/
.content-head01{
	margin-bottom:2em;	
}
.content-head01_01{
	font-size:2em;
	font-family: serif;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom:0.4em;
}
.content-head01_02{
	font-size:1em;
}


/*背景色*/
.bg-color01{
	background: #fff;
}
.bg-color02{ /*文字色と同じ色*/
	background: #363636;
}
.bg-color03{ /**/
	background: #b9b9b9;
}

/*テキスト色*/
.font-color01{ /*差し色ピンク*/
	color:#db7e76;
}

/*フォント指定*/
/*Amiri*/
.font01{
	font-family: 'Amiri', serif;
}


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

/*通常*/
.main-visual{
	margin-bottom:0;
	width:100%;
	/*background-color: #f3f2ee;*/
	line-height: 0;
}
.main-visual img {
	width:100%;
	max-width: 980px;
}

.main-visual h1{
	margin:0;
	line-height: 0;
}

/*アーカイブ用*/
.main-visual_archive{
	margin:30px auto -50px;
}
@media screen and (max-width: 768px){
	.main-visual_archive{
		margin:2em auto -2em;
	}
}
.main-visual_archive h1{
	font-weight:400;
	margin:auto;
}
.main-visual_archive .upper_title{
	display: inline-block;
	background-color: #000;
	color:#fff;
	font-size:0.4em;
	line-height:1.4;
	padding:0.2em 2em 0;
	margin-bottom:0.5em;
	border-radius: 3px;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.メニュー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-menu{
	
}


/*リンクエリア：フレックスボックス*/
.main-menu_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	
	width:90%;
	max-width:600px;
	margin:auto;
}
.main-menu_box img{
	width:100%;
	border-radius: 50%;
}
/*PC*/
@media (min-width: 769px) {
	.main-menu_box > div {
	/*列数と間の余白の設定*/
		width: calc( ( 100% - 100px ) / 5 );
		margin-right: 25px;
		margin-bottom:30px;
	}
	/*右端のマージンをゼロ設定*/
	.main-menu_box > div:nth-child( 5n ),
	.main-menu_box > div:last-child{
		margin-right: 0;
	}
	/*最下段の下部マージンをゼロ設定*/
	.main-menu_box > div:nth-last-child(-n+5){
		margin-bottom: 0;
	}
}
/*SP*/
@media (max-width: 768px) {
	.main-menu_box > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 45px ) / 4 );
		margin-right: 15px;
		margin-bottom:15px;
	}
	/*右端のマージンをゼロ設定*/
	.main-menu_box > div:nth-child( 4n ),
	.main-menu_box > div:last-child{
		margin-right: 0;
	}
	/*最下段の下部マージンをゼロ設定*/
	.main-menu_box > div:nth-last-child(-n+4){
		margin-bottom: 0;
	}
}



.main-menu_date{
	margin-top:0.5em;
	letter-spacing:0;
	line-height:1.25;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.プロフィール
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.main-profile{
	
}

.main-profile_box{
	margin:auto;
	
	width:480px;
	max-width: 70vw;
	
	border:solid 1px #000;
	border-radius: 15px;
	
	text-align: justify;
}
.main-profile_img{	
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.profile_name{
	font-size:2em;
}
.profile_name span{
	font-size:0.4em;
}
.profile_text{
	font-size:0.7em;
}
.profile_link{
	margin-top:0.8em;
}


/*PC*/
@media (min-width: 769px) {
	.main-profile_box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		/*フレックスボックスの要素を左寄せ*/
		justify-content: center;
	}
	.main-profile_img{
		width:40%;
		border-radius: 15px 0 0 15px;
	}
	.main-profile_contents{
		width:60%;
		
		padding: 2% 4% 4%;
	}
}
/*SP*/
@media (max-width: 768px) {
	.main-profile_img{
		width:auto;
		height: 70vw;
		border-radius: 15px 15px 0 0;
	}
	
	.main-profile_contents{
		padding: 0 8% 8%;
	}
	
	.profile_link{
		width:70%;
		margin:1em auto 0;
	}
}



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

.main-item{
	
}

.main-item_wrapper{
	
}

/*更新日*/
.item_update{
	display: inline-block;
	padding: 1em 5em;
	border:solid 2px #000;
	font-size:0.6em;
	margin-bottom:50px;
}
@media (max-width: 768px) {
	.item_update{
		margin-bottom:3em;
	}
}

/*画像01*/
.item_img01 img{
	display: inline-block;
	padding:20px;
	border:solid 1px #000;
	max-width:95%;
}
@media (max-width: 768px) {
	.item_img01 img{
		padding:3%;
	}
}

/*アイテムコメント*/
.item_text_box{
	margin: 3em auto;
	
	width:720px;
	max-width: 90%;
	
	text-align: justify;
}
.item_text_img img{
	width:100%;
	border-radius: 50%;
}
.item_text_head{
	display: inline-block;
	color:#fff;
	background-color: #000;
	border-radius: 3px;
	padding:0.15em 1em 0;
	font-size:0.7em;
}
.item_text_name{
	margin-top:0.5em;
	font-size:1.5em;
	line-height:1;
	text-align: left;
}
.item_text_name02{
	margin-top:0.5em;
	font-size:0.7em;
	line-height:1.4;
}
.item_text_comment{
	font-size:0.7em;
	border-top:solid 1px #000;
	margin-top:1em;
	padding-top:1em;
}
.item_text_link{
	margin-top:1em;
	text-align: right;
}
/*PC*/
@media (min-width: 769px) {
	.item_text_box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		/*フレックスボックスの要素を左寄せ*/
		justify-content: center;
		align-items: flex-start;
	}
	.item_text_img{
		width:40%;
	}
	.item_text_contents{
		width:60%;
		padding: 2% 4% 4%;
	}
}
/*SP*/
@media (max-width: 768px) {
	.item_text_img{
		width:70%;
		margin:auto;
	}
	
	.item_text_contents{
		padding: 0 8% 8%;
		margin-top:2em;
	}
	
	.item_text_link{
		margin:1em 0 0 auto;
		width:40%;
	}
}


/*画像02*/
.item_img02 img{
	width:100%;
}
/*PC*/
@media (min-width: 769px) {
	.item_img02{
		margin:3em auto;
		width:800px;
		height:500px;
		position:relative;
	}
	.item_img02_01{
		position:absolute;
		top:0;
		left:0;
		width:49%;
	}
	.item_img02_02{
		position:absolute;
		right:0;
		bottom:0;
		width:49%;
	}
}
/*SP*/
@media (max-width: 768px) {
	.item_img02{
		width:90%;
		margin:3em auto;
	}
	.item_img02_01{
		width:80%;
		margin-left:0;
		margin-right:auto;
	}
	.item_img02_02{
		width:80%;
		margin-top:0.5em;
		margin-left:auto;
		margin-right:0;
	}
}

/*画像03*/
.item_img03{
	margin:3em auto;
}
/*画像04*/
.item_img04{
	margin:3em auto;
	width:90%;
}


/*ANOTHER COORDINATEタイトル*/
.item_head02{
	display: inline-block;
	border-bottom:solid 1px #000;
	padding:0 0.5em 0.05em;
	margin-top:1em;
}

/*アイテムフッターリンク*/
.item_footer_link{
	margin:3em auto;
}
.item_footer_link_01{
	
}
.item_footer_link_02{
	display: inline-block;
	border-bottom:solid 1px #000;
	padding:0 0.5em 0.05em;
	margin-top:0.5em;
	font-size:0.5em;
}





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

.contents-footer{
	
}

.contents-footer_line{
	width:1px;
	height:150px;
	background-color: #000;
	margin-left:auto;
	margin-right:auto;
}

.contents-footer_logo{
	margin-left: auto;
	margin-right: auto;
	width:390px;
	max-width: 70%;
}
.contents-footer_logo img{
	width:100%;
}




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



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
10.アーカイブへのリンク
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*アーカイブへのジャンプリンク*/
.main-archive_jump{
	margin-top:-50px;
}
@media (max-width: 768px) {
	.main-archive_jump{
		margin-top:-2em;
	}
}
.main-archive_jump a{
	display: inline-block;
	border-bottom: solid 1px #000;
	line-height:1;
}
.main-archive_jump a::before{
	content: "\0bb";
	margin-right:0.1em;
}



/*アーカイブリンク*/
.main-archive{
	width:90%;
	max-width:480px;
	margin:auto;
}
.archive_title{
	margin-bottom:1em;	
}
/*リンクエリア：フレックスボックス*/
.archive_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	align-items: flex-start;
	
	width:100%;
	text-align: center;
	margin-bottom: 2em;
}
.archive_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 20px ) / 3 );
	margin-right: 10px;
}
/*右端のマージンをゼロ設定*/
.archive_box > div:nth-child( 3n ),
.archive_box > div:last-child {
	margin-right: 0;
}

/*ボタンデザイン*/
.archive_item{
	margin-bottom:10px;	
	border:1px solid #000;
	width:100%;
	border-radius: 5px;
}
.archive_item a{
	display: block;
}
.archive_item:hover,
.archive_item a:hover{
	background-color: #000;
	color:#fff;
	opacity: 1;
}
/*SP*/
@media (max-width: 768px) {
	.archive_box > div,
	.archive_box > div:nth-child( 3n ){
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 1vw ) / 2 );
		margin-right: 1vw;
	}
	.archive_box > div:nth-child( 2n ),
	.archive_box > div:nth-child( 6n ){
		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}
}



/*下から*/
.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);
}