﻿@charset "UTF-8";
body{
	background-image: url("../../image/renga2.jpg");
	color: white;
	font-family: 'メイリオ', 'MS ゴシック', sans-serif;
	font-size:14px;
}
.contena {
	max-width: 320px;
	margin: 0 auto;
}

/*ログインくくり　左右*/
.login_kukuri {
	width: 320px;
	margin: 0 auto;
	text-shadow: -1px -1px black,1px 1px 1px black;
}
/*ログイン　コメント*/
.guest_span {
	font-size: 16px;
}
.guest_out_span {
	font-size: 16px;
	float: right;
}

/*未訪問*/
.guest_out_span a:link {
	color: aqua;
}
/*訪問済*/
.guest_out_span a:visited {
	color: aqua;
}
/*ポイント時*/
.guest_out_span a:hover {
	color: aqua;
}
.guest_span_tyuui {
	font-size: 12px;
	float: right;
}


/*  和紙タイトル(商品名)*/
.dai_1 {	/*16文字以下*/
	width: 320px;
	height: 50px;
	font-size: 19px;
	font-weight: bold;
	color: #990000;
	line-height: 50px;
	text-align: center;
	text-shadow: 1px 1px black;
	background-image: url("../../image/washi6_3.jpg");
}
.dai_2 {	/*17文字以上*/
	width: 320px;
	height: 50px;
	font-size: 15px;
	font-weight: bold;
	color: #990000;
	line-height: 50px;
	text-align: center;
	text-shadow: 1px 1px black;
	background-image: url("../../image/washi6_3.jpg");
}
/*  ギフトタイトル*/
.gift_dai_1 {		/*16文字以下*/
	width: 320px;
	height: 60px;
	font-size: 19px;
	font-weight: bold;
	color: #990000;
	line-height: 30px;
	text-align: center;
	text-shadow: 1px 1px black;
	background-image: url("../../image/washi6_3.jpg");
}
.gift_dai_2 {		/*17文字以上*/
	width: 320px;
	height: 50px;
	font-size: 15px;
	font-weight: bold;
	color: #990000;
	line-height: 26px;
	text-align: center;
	text-shadow: 1px 1px black;
	background-image: url("../../image/washi6_3.jpg");
}


/*左側*/
/*品物*/
.sina {
	position: relative;
	width: 320px;
	height: 270px;
	margin-bottom: 10px;
	margin-top: 10px;
}
.ita {
	width:320px;
	height: 270px;	
}
.syasin {
	position: absolute;
	width: 300px;
	height: 250px;
	top: 10px;
	left: 10px;
}

/*写真スライド//////////////////////////////////////////////////////////////////////////////////////////*/
li {
list-style: none;
}
/* ↓ スライドの外枠 */
.slide-wrapper {
width: 300px;
height: 250px;
position: relative;
position: absolute;
overflow: hidden; /* 枠からはみ出た他のスライドを隠すために、CSSで「overflow: hidden;」を設定*/
top: 10px;
left: 10px;
}
/*  ↓ スライド（コンテンツ） */
.slide { /*スライド全体 */
width: 200%;
height: 250px;
display: flex;
transition: all 0.3s;
}

.slide_comment{
	position: absolute;
	top: 5px;
	left: 10px;
	font-size: 20px;
	color: yellow;
	font-weight: bold;
	text-shadow: -1px -1px 1px black,1px 1px 1px black;	
}
.comment {
	display: none;
}
.s_3_slide { /*写真3枚の場合 */
	width: 300%;
	height: 250px;
	display: flex;
	transition: all 0.3s;
}
.s_4_slide { /*写真4枚の場合 */
	width: 400%;
	height: 500px;
	display: flex;
	transition: all 0.3s;
}
.slide div { /* スライド */
width: 50%;
height: 100%;
font-size: 16px;
display: flex;
text-align: center;
justify-content: center;
align-items: center;
}
.s_3_slide div { /* スライド */
	width: 33.33%;
	height: 100%;
	font-size: 16px;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	}

/*2枚の場合*/
.slide1 { /* スライドさせるために必要なクラス 	動きをつけるプロパティ*/
	transform: translateX(0);	/*ranslateX 水平方向*/
}
.slide2 { /* スライドさせるために必要なクラス */
	transform: translateX(-50%);
}
/*3枚の場合*/
.s_3slide1 { 
	transform: translateX(0);	
}
.s_3_slide2 { 
	transform: translateX(-33.33%);
}
.s_3_slide3 { 
	transform: translateX(-66.66%);
}
/*4枚の場合*/
.s_4_slide1 {
	transform: translateX(0);	
}
.s_4_slide2 {
	transform: translateX(-25%);
}
.s_4_slide3 {
	transform: translateX(-50%);
}
.s_4_slide4 {
	transform: translateX(-75%);
}

.slide img{
width: 100%;	
height: auto;	
}
.s_3_slide img{
	width: 100%;	
	height: auto;	
}
.s_4_slide img{
	width: 100%;	
	height: auto;	
}

/* ↓ 左右のボタン */
.next {
position: absolute;
width: 15px;
height: 15px;
right: 10px;
bottom: 50%;
z-index: 10;
cursor: pointer;
border-top: solid 5px white;
border-right: solid 5px white;
-webkit-transform: rotate(45deg) translateY(50%);
transform: rotate(45deg) translateY(50%);
}
.prev {
position: absolute;
width: 15px;
height: 15px;
left: 25px;
bottom: 50%;
z-index: 10;
cursor: pointer;
border-top: solid 5px white;
border-right: solid 5px white;
-webkit-transform: rotate(-135deg) translateY(-50%);
transform: rotate(-135deg) translateY(-50%);
}
/* ↓ インジケーター */
.indicator {
/*visibility: hidden;*/
width: 70%;
position: absolute;
bottom: 0px;
display: flex;
column-gap: 18px;
z-index: 10;
justify-content: center;
align-items: center;
}
.indicator li {
width: 10px;
height: 10px;
border-radius: 50%;
list-style: none;
background-color: gray;
border: 2px black solid;
cursor: pointer;
}
.indicator li:first-of-type {
background-color: yellow;
}
/***********************************************************************************/
/*商品解説*/
.kaisetu_back {
	clear: left;
	width: 320px;
	line-height: 0px;
	margin-left: 0px;
	background-image: url("../../image/kami3.jpg");
}
.kaisetu_kukuri {
	width:300px;
	margin-left:10px;
	margin-top:0px;
}
.kaisetu_left {
	width:130px;
	margin-left:0;
	float:left;
}
.kaisetu_right {
	width:170px;
	margin-left:0; 
	float:right;
}


.setumei {	
	font-size: 14px;
	color: #330055;
	line-height: 14px;
	font-weight: bold;
	margin-left: 3px;
}
.nedan {
	font-size: 13px;
	text-align: right;
	color: #770000;
	line-height: 6px;
	font-weight: bold;
	margin-right: 3px;
}
.nedan_2 {
	font-size: 13px;
	text-align: left;
	color: #770000;
	line-height: 6px;
	font-weight: bold;
	margin-left: 2px;
}
.naiyo {
	font-size: 13px;
	text-align: right;
	color: #000000;
	line-height: 6px;
	font-weight: bold;
	margin-right: 3px;
}
.naiyo_mobile {
	font-size: 13px;
	color: #000000;
	line-height: 6px;
	font-weight: bold;
	margin-left: 20px;
}

.naiyo_2 {
	font-size: 13px;
	text-align: left;
	color: #000000;
	line-height: 6px;
	font-weight: bold;
	margin-left: 2px;
}

.naiyo_zaiyo {
	font-size: 11px;
	text-align: right;
	color: #000000;
	line-height: 11px;
	font-weight: bold;
	margin-left: 20px;
	
}
.naiyo_zairyo_2 {
	font-size: 11px;
	text-align: left;
	color: #000000;
	line-height: 12px;
	font-weight: bold;
	margin-left: 2px;
	
}


.naiyo_kigen {
	font-size: 13px;
	text-align: right;
	color: #000000;
	line-height: 15px;
	font-weight: bold;
	margin-right: 3px;
}

.naiyo_kigen_2 {
	font-size: 13px;
	text-align: left;
	color: #000000;
	line-height: 15px;
	font-weight: bold;
	margin-left: 2px;
}

.weekend_meyasu {
	font-size: 12px;
	margin: 0px;
	margin-left: 85px;
	color: blue;
	line-height: 16px;
	font-weight: bold;
}

.kaifu_setumei {
	font-size: 12px;
	color: crimson;
	line-height: 6px;
	font-weight: bold;
	margin: 15px;
	text-align: center;
}
.photo_setumei {	
	font-size: 10px;
	color: #330055;
	line-height: 6px;
	font-weight: bold;
	text-align: center;
}






/*ナビ*/
.nav {
	display: none;
}
.nav_mobile {
	font-size: 14px;
	font-weight: bold;
	padding: 0px 0px;
	background-color: #333;
	width: 320px;
	line-height: 14px;
}
.nav-list_mobile {
	margin: 0px;
	padding:0px;
}
.nav-item_mobile {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	padding: 10px 10px;
}
.nav-item2_mobile {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	padding: 10px 10px;
}





.nav_kobetu {
	font-size: 17px;
	font-weight: bold;
	padding: 0px 0px;
	background-color: #333;
	width: 320px;
	line-height: 20px;
}
.nav-list {
	margin: 0px;
	padding:0px;
}
.nav-item_kobetu {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	padding: 10px 15px;
}
.nav-item_2 {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	padding: 10px 20px;
}



a:link {
	color: aqua;
}
a:hover {
	text-decoration: none;
}
.nav-item:hover{
	background: #77293d;
}
.nav-item a:link {
	color: #fff;
}
.nav-item a:visited {
	color: #fff;
}
.nav-item_2:hover{
	background: #77293d;
}
.nav-item_2 a:link {
	color: #fff;
}
.nav-item_2 a:visited {
	color: #fff;
}


/*\\\\\\\\\旧メニュー\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
.nav_recipe {
	font-size: 14px;
	font-weight: bold;
	padding: 0px 0px;
	background-color: #333;
	width: 300px;
	line-height: 14px;
	text-align: center;
	margin: auto;
}
.nav-list_recipe {
	margin: 0px;
	padding:0px;

}
.nav-item_recipe {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	padding: 10px 20px;
	/*border: 1px solid;/* 線 */
	/*border-color:#330055;*/
	
}
.nav-item_2_recipe {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	padding: 10px 20px;
}
.nav-item_recipe:hover{
	background: #77293d;
}
.nav-item_recipe a:link {
	color: #fff;
}
.nav-item_recipe a:visited {
	color: #fff;
}
.nav-item_2_recipe:hover{
	background: #77293d;
}
.nav-item_2_recipe a:link {
	color: #fff;
}
.nav-item_2_recipe a:visited {
	color: #fff;
}



















/*リンク*/
a {
	text-decoration: none;/*リンクの下線　なし*/
}
a:link {
	color: #6666cd;
}
a:hover {
	text-decoration: none;
}
.nav-item_mobile:hover{
	background: #77293d;
}
.nav-item_mobile a:link {
	color: #fff;
}
.nav-item_mobile a:visited {
	color: #fff;
}
.nav-item2_mobile:hover{
	background: #77293d;
}
.nav-item2_mobile a:link {
	color: #fff;
}
.nav-item2_mobile a:visited {
	color: #fff;
}


/*販売*/
.skip_zyotai {
	width: 320px;
	margin-bottom: 0px;
	background-image: url("../../image/washi2.jpg");
	text-align: center;
}
.syosai {
	margin-top: 0px;
	color: yellow;
	font-size: 14px;
}
.syosai_2 {
	margin-top: 0px;
	color: black;
	font-size: 14px;
}
/*スマホ用縦スペース*/
.buy {
	display: none;
}
/*スマホ用*/
.buy_mobile {
	width: 320px;
	font-size:16px;
	background-image: url("../../image/washi22.jpg");
}

.buy_mobile_naiyo {
	width: 270px;
	margin-left: 25px;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size:16px;
	text-align: center;
}
.buy_wrapper {
	width:270px;
	margin-left:0px;
	margin-top:0px;
}
.buy_left {
	width:120px;
	margin-left:0;
	float:left;
	text-align: right;
}
.buy_right {
	width:150px;
	margin-left:0; 
	float:right;
	text-align: left;
}



.koumoku {
	color: black;
	font-size:14px;
	font-weight: bold;
	line-height: 30px;
	margin-bottom: 10px;
}
.buy_select_yoryo {
	width: 100px;
	height: 24px;
	font-size:16px;
	margin-bottom: 6px;
	background-color: white;
}
.buy_select_pack {
	width: 80px;
	height: 24px;
	font-size:16px;
	background-color: white;
}
.yohaku {
	font-size: 8px;
	line-height: 1;
	margin: 0px;
}


/* ギフト用 */
.buy_mobile_naiyo_gift {
	width: 270px;
	margin-left: 25px;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size:16px;
}
.buy_wrapper_gift {
	width:270px;
	margin-left:0px;
	margin-top:0px;
}
.buy_left_gift {
	width:95px;
	margin-left:0;
	float:left;
	text-align: right;
}
.buy_right_gift {
	width:175px;
	margin-left:0; 
	float:right;
	text-align: left;
}

.gift_koumoku {
	color: black;
	font-size:14px;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
	margin-bottom: 0px;
}

.noshi {
	width: 150px;
	height: 25px;
	font-size:16px;
	font-weight: bold;
	background-color: white;
}
.noshi_text {
	width: 262px;
	height: 60px;
	font-size:16px;
	font-weight: bold;
	background-color: white;
}
/*  ギフト説明*/
.gift_tyuui {
	background-image: url("../../image/washi4.jpg");
	width: 320px;
}

.gift_comment {
	width: 300px;
	margin-left: 10px;
	font-size: 14px;
	line-height: 14px;
	font-weight: bold;
	color: black;	
}
.gift_comment_2 {
	width: 270px;
	margin-left: 0px;
	font-size: 14px;
	line-height: 14px;
	font-weight: bold;
	text-align: left;
	color: red;	
}
.gift_comment_3 {
	width: 270px;
	margin-left: 0px;
	font-size: 14px;
	line-height: 14px;
	font-weight: bold;
	color: black;
}


/*ログインを促す箇所*/
.buy_login {
	width: 320px;
	font-size:16px;
	background-image: url("../../image/washi22.jpg");
}
.buy_login_kukuri {
	width: 280px;
	margin-left: 20px;
}
.buy_login_comment {
	color: black;
	font-size: 13px;
	font-weight: bold;
}
.buy_login_comment_tyuui {
	color: red;
	font-size: 13px;
	font-weight: bold;
}

/*年末用コメント*/
.buy_nenmatu {
	width: 320px;
	font-size:16px;
	background-image: url("../../image/washi22.jpg");
}
.nenmatu_comment_kukuri {
	width: 300px;
	margin-left: 10px;
}
.nenmatu_comment {
	color: black;
	font-size: 13px;
	font-weight: bold;
}
/*欠品コメント*/
.keppin_comment_kukuri {
	width: 210px;
	margin-left: 70px;
}


/*週末個別画面の販売に関してのコメント*/
.weekend_kobetu_kukuri {
	width: 320px;
	margin-bottom: 0px;
	background-image: url("../../image/washi21.jpg");
}

.weekend_setumei {
	width:300px;
	margin-left: 10px;
	margin-top: 0px;
	color: black;
	font-size: 14px;
	font-weight: bold;
}




/*個別画面の戻るボタン*/
.kobetu_button {
	font-size: 14px;
}

.button_kukuri {
	text-align: center;
} 
.button_size {
	width: 110px;
	height: 30px;
	font-size:16px;
}
.button_size_nenmatu {
	width: 160px;
	height: 30px;
	font-size:16px;
}
.button {
	text-align: center;
} 

.recipe_button{
	width: 80px;
	height: 30px;
	font-size:16px;
}




/*データベース接続失敗*/
.syougai {
	text-align: center;
	margin-top: 150px;
}
.syougai_p {
	font-size: 20px;
	text-shadow: -1px -1px black,1px 1px 1px black;
}
.button_size_syougai {
	width: 150px;
	height: 30px;
	font-size:16px;
	margin-top: 70px;
	margin-bottom: 170px;
}
.button_size_syougai a:link {
	color: black;
	text-decoration: none;
}
/*訪問済*/
.button_size_syougai a:visited {
	color: black;
}

/* フッター */
.footer {
	width: 320px;
	text-align: center;
	background-color: gray;
	font-size: 14px;
}

