/*お決まりフレーズ*/
@charset "urf-8";


/*全体のフォント指定*/

body {
	font-family: 'Noto Serif JP', serif;
	font-family: 'Playfair Display', serif;
	background-color: #f8f3e5;
}
/*画像調整：max-width:100%;：子要素が小さい場合はそのまま(使いやすい)*/

img {
	max-width: 100%;
}

/*---[menu]ハンバーガーメニュー＋画像---*/

/* メニューを画面上部に固定表示しています */

.gMenu {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 80;
}
/* メニューアイコンを画面右上に固定しています */

.gMenu .menu-icon {
	cursor: pointer;
	position: absolute;
	right: 5px;
	top: 12px;
	padding-top: 23px;
	height: 12px;
}
/* メニューアイコン（三本線）の真ん中の線です */

.gMenu .menu-icon .navicon {
	background: #504f4f;
	/* 色は自由に変更可能です */
	display: block;
	height: 2px;
	/* 太さ */
	width: 25px;
	/* 長さ */
	position: relative;
	transition: background .4s ease-out;
	/* 形が変わる時のアニメーション */
}
/* メニューアイコン（三本線）の上と下の線を疑似要素で追加 */

.gMenu .menu-icon .navicon::before, .gMenu .menu-icon .navicon::after {
	background: #504f4f;
	/* 色は自由に変更可能です */
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all .4s ease-out;
	/* 形が変わる時のアニメーション */
	width: 100%;
}
.gMenu .menu-icon .navicon::before {
	top: 10px;
}
/* 位置を上にずらしています */

.gMenu .menu-icon .navicon::after {
	top: -10px;
}
/* 位置を下にずらしています */

/* 表示されるメニューです */

.gMenu .menu {
	background-color: rgba(255, 255, 255, 0.9);
	overflow: hidden;
	max-height: 0;
	/* ★最初は高さを0にして非表示状態に */
	transition: max-height .6s;
	/* 表示されるときのアニメーション */
	text-align: center;
}
/* メニュー部分のデザインです */
/* メニュー:上の余白 */
.gMenu .menu li:first-of-type {
	padding-top: 70px;
}
.gMenu .menu li a {
	display: block;
	padding: 24px 20px;
	text-decoration: none;
	text-transform: uppercase;
}
.gMenu .menu li a:hover {
	background-color: #f4f4f4;
}
/* チェックボックスは常に非表示です */

.gMenu .menu-btn {
	display: none;
}
/* ▼▼▼以下はチェックボックスがONの時の状態です▼▼▼ */

.gMenu .menu-btn:checked~.menu {
	max-height: 1000px;  /*338px*/
	/* ★チェックボックスがオンの時高さを338pxにして表示させます */
	transition: max-height .7s;
}
/* メニューボタンの中央の線を非表示に */

.gMenu .menu-btn:checked~.menu-icon .navicon {
	background: transparent;
}
/* メニューボタンの上下の線を45度傾けて✕印を作ります */

.gMenu .menu-btn:checked~.menu-icon .navicon::before {
	transform: rotate(-45deg);
	top: 0;
}
.gMenu .menu-btn:checked~.menu-icon .n.double_lineavicon::after {
	transform: rotate(45deg);
	top: 0;
}
/*---[menu]ハンバーガーメニュー＋画像---*/

/*---HOMEボタン---*/

.html {
	scroll-behavior: smooth;
}
.pagetop {
	height: 35px;
	width: 60px;
	position: fixed;
	left: 15px;
	bottom: -5px;
	background: #f8f3e5;
	border-radius: 80px 80px 0px 0px;
	/*border: solid 2px #000;*/
	/*border-radius: 50%;*/
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	font-size: 12px;
}
/*ヘッダー　背景：色指定*/

header {
	background-color: #f8f3e5;
}
/*ヘッダー　ayakalABOを大きくする*/

.gnavayakaLABO {
	font-size: 35px;
	/*font-weight: bold;*/
}
/*ヘッダー　サーチアイコン*/

.cartimg img {
	height: 40px;
	width: auto;
	padding: 2px 0px 0px;
}
/*ヘッダー　ログインアイコン*/

.iconimg img {
	height: 35px;
	width: auto;
	padding: 2px 0px 0px;
}
/*グローバルnav固定：要素の配置(ポジションプロパティ)：position: fixed;動かない*/

.gnav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #f8f3e5;
	z-index: 1;
}
/*グローバルnavを広げる：フレックス：①親要素：justify-content：両端あり・spase-around*/

.gnavul {
	display: flex;
	justify-content: space-around;
	width: 100%;
	margin: 0px auto;
	padding: 10px 0px;
}
/*グランドメニュー　２重線*/

.gnavul {
	border-top: .5px double #000000;
	border-bottom: .5px double #000000;
	padding: 3px 0px 3px;
	margin: 5px 0px;
}
/*HOME　h1*/

.mydeerh1 {
	font-size: 60px;
	display: flex;
	justify-content: center;
	padding: 20px 0px 0px;
}
/*HOME　上部空白*/

.mydeertop {
	line-height: 80px;
}
/*HOME　色*/

#mydeerArea {
	background-color: #2c2f29;
	z-index: 1;
}
/*HOME　背景*/

.mydeer {
	/*background-image: linear-gradient(180deg,#2c2f29 0%,#2c2f29 10%,#f8f3e5 10%,#f8f3e5 100%);*/
	background-color: #f8f3e5;
	border-radius: 80px 80px 0px 0px;
}
/*ローカルナビ 位置：センターへ*/

.localnavul {
	display: flex;
	justify-content: center;
}
/*ローカルナビ 上下幅/文章間：広く*/

.localnavul li {
	margin: 14px 5px;
}
/*ローカルナビ マウスオーバー*/

.localnavul li a:hover {
	text-decoration: underline solid;
}
/*h2 タイトル*/

h2 {
	font-size: 50px;
	display: flex;
	justify-content: center;
	padding: 0px 0px 20px;
}

/*fcblog box*/
.fcblogbox {
	padding: 0px 20px 10px;
	font-family: 'Noto Sans JP', sans-serif;
}
/*fcblog img*/
#fcblog img {
	padding: 5px;
	margin: 10px auto 10px;
	/*height: 350px;*/
	width: 100%;
	object-fit: contain;
}

/*fcblog ボタン*/
.fcblogbtn {
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	background-color: #f8f3e5;
	border: 1px solid #000000;
	margin: 12px auto 0px;
	width: 200px;
}
.fcblogbtnm {
	line-height: 50px;
}
#fanmeeting img {
	padding: 5px;
	margin: 10px auto 10px;
	height: 350px;
	width: 100%;
	object-fit: contain;
}
.fanmeetingbox {
	font-family: 'Noto Sans JP', sans-serif;
	margin: 0px 50px 0px;
	text-align: center;
}
select {
	-moz-appearance: menulist;
	-webkit-appearance: munulist;
	appearance: menulist;
	background-color: #ffffff;
	font-size: 15px;
}
.fanmeetingsend {
	text-align: center;
}
button[type="submit"] {
	background-color: #121212;
	color: #ffffff;
	padding: 18px 80px;
}
button[type="submit"]:hover {
	background-color: #c7887f;
	margin-left: 20px;
	transition-property: background-color, margin-left;
	transition-duration: 300ms;
	transition-timing-function: ease-in;
	transition-delay: 0ms;
}
.datep {
	margin: 20px 0px 20px;
}

.fanmeetingm {
	line-height: 20px;
}

/*--------------------------------------------------------------------------------------*/

/*contact 背景*/

.contact {
	background-color: #ffffff;
}
/*contact ボタン*/

.contactbtn {
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	font-weight: bold;
	background-color: #f8f3e5;
	margin: 10px auto 0px;
	width: 220px;
	padding: 10px 0;
	border-radius: 40px;
}
.contactbtnm {
	line-height: 115px;
}
/*contact タイトル*/

.contact h2 {
	font-size: 40px;
	display: flex;
	justify-content: center;
	padding: 50px 0px 0px;
}
/*contact サブタイトル*/

.contact h3 {
	display: flex;
	justify-content: center;
	font-size: 30px;
	padding: 0px 0px 15px;
}
.follow {
	text-align: center;
}
.socialmedia img {
	height: 80px;
	width: auto;
}
.socialmedia {
	display: flex;
	justify-content: space-evenly;
	padding: 15px 0px 20px;
}
/*--------------------------------------------------------------------------------------*/

/*footer　背景*/

footer {
	background-color: #f8f3e5;
	text-align: center;
	font-size: 10px;
}
/*footer 幅*/

.footertop {
	line-height: 42px;
}
/*footer　傍線*/

.example3 {
	padding: 10px;
	background: #f8f3e5;
	position: relative;
}



/*--------------------------------------------------------------------------------------*/

/*artworks　*/
#artworks {
background-color: #ffffff;
}
.artworks {

	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 横2列 */
	grid-template-rows: repeat(3, auto); /* 縦3列 */
	grid-gap: 20px;
	margin: 20px;
  }
  
  .mydeerproduct {
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 10px;
  }

  .mydeerproduct h3 {
    font-size: 20px;
    margin-bottom: 10px;
    padding: 0;
	text-align: center;
    }
    
    .mydeerproduct p {
    font-size: 15px;
    margin: 10px 0;
	font-family: 'Noto Sans JP', sans-serif;
    }
    
    .mydeerproduct img {
    width: 100%;
    height: auto;
    object-fit: cover;
    }
	
/*fcblog ボタン*/
.artbtn {
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	background-color: #ffffff;
	border: 1px solid #000000;
	margin: 12px auto 0px;
	width: 200px;
}
.artbtnm {
	line-height: 50px;
}
  
.mydeerprice {
	font-family: 'Noto Sans JP', sans-serif;
}


/*--detail------------------------------------------------------------------------------------*/

#detailArea{
	margin: 10px 20px;
  }
  
  .tiph2p {
	font-size: 30px;
	text-align: center;
	margin-bottom: 20px;
	display: block;
	color: #6b6a6a;
  }

  
  .price {
	font-size: 25px;
	font-family: 'Noto Sans JP', sans-serif;
	margin-top: 10px;
	margin-left: 20px;
  }
  
  .qty {
	font-size: 20px;
	font-family: 'Noto Sans JP', sans-serif;
	margin-top: 10px;
	margin-left: 20px;
  }
  
  .detailcartbtn{ 
	  text-align: center;
	  font-family: 'Roboto', sans-serif;
	  font-size: 20px;
	  /*font-weight: bold;*/
	  background-color: #f8f3e5;
	  margin: 10px 20px 0px;
	  width: 90%;
	  padding: 10px 0;
	  border-radius: 40px;
  }
  
  .buybtn {
	  text-align: center;
	  font-family: 'Roboto', sans-serif;
	  font-size: 16px;
	  /*font-weight: bold;*/
	  background-color: #f8f3e5;
	  margin: 10px auto 0px;
	  width: 90%;
	  padding: 10px 0;
	  border-radius: 40px;
  }
  
  .detailcartbtnm {
  line-height: 10px;
  }
  
  .cartfavorite {
	text-align: center;
  }
  
  .detailm{
	line-height: 20px;
	}
  
	#tipArea img {
		padding: 5px;
		margin: 10px auto 10px;
		height: 350px;
		width: 100%;
		object-fit: contain;
	}

	.tiph2 {
		padding: 0px 0px;
		margin-top: 20px;
	}
	.tipbox {
		font-family: 'Noto Sans JP', sans-serif;
		margin: 10px 10px 10px;
		text-align: center;
	}

	#tipArea {
		background-color: #ffffff;
	}

	.tipbtnm {
		line-height: 50px;
	}
	.tipbtnm {
		line-height: 5px;
	}
	.tipm {
		line-height: 20px;
	}

	.fanmeetingdetail {
		width :80%;
		margin : 0px auto; 
	  }
	  
	  .fanmeetingdetail p{
		font-family: 'Noto Sans JP', sans-serif;
	  }

#giftsArea {
	background-color: #ffffff;
	text-align: center;
}

#giftsArea h3{
    font-size: 20px;
	text-align: center;
}

.dlbtn{
    display: inline-block;
    padding: 18px 80px;
    background-color:  #080808; /* 背景色 */
    color: #ffffff; /* テキスト色 */
    text-decoration: none;
    border-radius: 0px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;

}

.dlbtn:hover {
	background-color: #c7887f;
	margin-left: 20px;
	transition-property: background-color, margin-left;
	transition-duration: 300ms;
	transition-timing-function: ease-in;
	transition-delay: 0ms;
}

/*--------------------------------------------------------------------------------------*/
@media screen and (min-width: 920px) {
/*--------------------------------------------------------------------------------------*/


/*ヘッダー*/
	/* メニューアイコンの位置 */
	.gMenu {
		right: 0px;
		top: 0px;
	}
	/* メニューアイコンの範囲 */
	.gMenu .menu-icon {
		padding: 55px 80px 0px 0px;
		height: 38px;
	}
	/* メニューアイコン（三本線）の真ん中の線です */
	.gMenu .menu-icon .navicon {
		width: 50px;
		/* 長さ */
	}

/* メニュー:上の余白 */
.gMenu .menu li:first-of-type {
	padding-top: 130px;
}

	/*サーチ大きさ*/
	.cartimg img {
		height: 90px;
		width: 120px;
		padding: 5px 20px 0px;
		margin: 10px 0px 0px;
	}
	/*アイコン大きさ*/
	.iconimg img {
		height: 85px;
		width: auto;
		padding: 10px 0px 0px;
		margin: 10px 0px 0px;
	}
	/*ヘッダーのayakalABOを大きくする*/
	.gnavayakaLABO {
		font-size: 70px;
		/*font-weight: bold;*/
		padding: 5px 0px 5px;
	}
	/*サーチ大きさ*/
	.cartimg {
		position: absolute;
		top: 5px;
		left: 80px;
		height: 90px;
		width: auto;
	}
	/*アイコン大きさ*/
	.iconimg {
		position: absolute;
		bottom: 40px;
		right: 150px;
		height: 80px;
		width: auto;
	}
	.gnavayakaLABO {
		top: 100px;
		text-align: center;
		font-size: 70px;
	}
	/*--------------------------------------------------------------------------------------*/
	/*HOMEボタン*/
	.pagetop {
		height: 60px;
		width: 120px;
		font-size: 25px;
		position: fixed;
		left: 60px;
		bottom: -7px;
		background: #f8f3e5;
		border-radius: 80px 80px 0px 0px;
		/*border: solid 2px #000;*/
		/*border-radius: 50%;*/
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 2;
	}
	/*--------------------------------------------------------------------------------------*/
	/*fcblog 2分割
	.fcblogwrap {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	fcblog 文章：ブロック
	.fcblogbox {
		display: block;
	}*/

	.fcblogbox p {
		text-align:center;
	}

	/*fcblog 写真*/
	#fcblog img {
		padding: 5px;
		margin: 10px auto 10px;
		height: 350px;
		width: 100%;
	}
	/*fcblog ボタン*/
	.fcblogbtn {
		font-size: 30px;
		margin: 20px auto 0px;
		width: 300px;
	}
	/*fcblog ボタン：空白*/
	.fcblogbtnm {
		line-height: 100px;
	}
	/*--------------------------------------------------------------------------------------*/
	/*fanmeeting 2分割*/
	.fanmeetingwrap {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	/*fanmeeting 写真：サイズ*/
	#fanmeeting img {
		display: block;
		height: 350px;
		width: auto;
	}
	/*fanmeeting 文章：サイズ*/
	.fanmeetingbox {
		margin: 10px 10px 10px;
	}
	/*--------------------------------------------------------------------------------------*/
	/*donation h3*/
	#donation h3 {
		font-size: 40px;
		padding: 0px 0px 20px;
		text-decoration: underline solid #e0c2ae 5px;
	}
	/*donation　h4*/
	#donation h4 {
		font-size: 30px;
		padding: 0px auto 0px;
		margin: 0px 0px 5px;
		display: flex;
		justify-content: center;
		font-family: 'Noto Sans JP', sans-serif;
	}
	/*donation　h4下文章*/
	.donationh4p {
		font-size: 20px;
		text-align: center;
		padding: 0px 0px 0px
	}
	/*--------------------------------------------------------------------------------------*/
	/*contact タイトル*/
	.contact h2 {
		font-size: 60px;
		padding: 50px 0px 0px;
	}
	/*contact サブタイトル*/
	.contact h3 {
		font-size: 50px;
		padding: 0px 0px 20px;
	}
	/*contact ボタン*/
	.contactbtn {
		font-size: 33px;
		font-weight: bold;
		margin: 10px auto 0px;
		width: 300px;
		padding: 10px 0;
		border-radius: 40px;
	}
	.follow {
		font-size: 38px;
	}
	.socialmedia img {
		height: 150px;
		width: auto;
		margin: 0 50px;
	}
	.socialmedia {
		display: flex;
		justify-content: center;
		padding: 15px 0px 20px;
	}
	/*--------------------------------------------------------------------------------------*/
	
	
	/*HOME　h1*/
	.mydeer {
		background-color: #f8f3e5;
		border-radius: 300px 300px 0px 0px;
	}
	/*HOME　上部空白*/
	.mydeertop {
		line-height: 140px;
	}
	/*HOME　色*/
	#mydeerArea {
		background-color: #2c2f29;
		z-index: 1;
	}
	/*mydeer タイトル*/
	.mydeerh2 {
		font-size: 60px;
		padding: 50px 0px 50px;
	}
	/*h2 タイトル*/
	h2 {
		font-size: 50px;
		display: flex;
		justify-content: center;
		padding: 0px 0px 20px;
	}
	
/*--------------------------------------------------------------------------------------*/

/*artworks*/

.artworks {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* 横2列 */
	grid-template-rows: repeat(2, auto); /* 縦3列 */
	grid-gap: 20px;
	margin: 20px;
}

.mydeerproduct {
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 20px;
  }

.mydeerproduct h3 {
	font-size: 20px;
    margin-bottom: 10px;
}
		
.mydeerproduct p {
	font-size: 16px;
	margin-bottom:10px;
}
		
.mydeerproduct .date {
	font-size: 14px;
	color: #999;
	text-align: right;
}
	
	


	/*----detail----------------------------------------------------------------------------------*/
		/*detail 2分割*/
		.detailWrap {
			display: flex;
			justify-content: center;
			align-items: center;
			flex-wrap: wrap;
		}
		/*fanmeeting 写真：サイズ*/
		#detailArea img {
			display: block;
			height: 350px;
			width: auto;
		}
		/*fanmeeting 文章：サイズ*/
		.detailbox {
			margin: 10px 10px 10px;
		}

/*--detail------------------------------------------------------------------------------------*/


  
  .namepc{
	font-size: 40px;
	text-align: center;
	margin-bottom: 0px;
	display: block;
  }
  
  .namepc2 {
	font-size: 30px;
	text-align: center;
	margin-bottom: 10px;
	display: block;
	color: #6b6a6a;
  }
  
  .detailcartbtn{ 
	text-align: center;
	  font-family: 'Roboto', sans-serif;
	  font-size: 20px;
	  /*font-weight: bold;*/
	  background-color: #f8f3e5;
	  margin: 10px 20px 0px;
	  width: 250px;
	  padding: 10px 0;
	  border-radius: 40px;
  }
  
  .cartfavorite {
	font-size: 16px;
	text-align: center;
  }

  	/*fanmeeting 写真：サイズ*/
	#tipArea img {
		display: block;
		height: 350px;
		width: auto;
	}
/*--/detail------------------------------------------------------------------------------------*/
.fanmeetingdetail {
	width :700px;
	margin : 0px auto; 
  }

}

