﻿@charset "UTF-8";

body{
	background-image: url("../../image/renga2.jpg") !important;
	color: white;
	font-family: 'メイリオ', 'MS ゴシック', sans-serif;
}
.contena {
	max-width: 1000px;
	margin: 0 auto;
}
/*ログインくくり　左右*/
.login_kukuri {
	width: 870px;
	margin: 0 auto;
}
/*ログイン　コメント*/
.guest_span {
	font-size: 20px;
}
.guest_out_span {
	font-size: 20px;
	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: 16px;
	float: right;
}



/*  和紙タイトル(商品名)*/
.dai_1 {	/*16文字以下*/
	width: 720px;
	height: 90px;
	margin-left: 140px;
	font-size: 45px;
	font-weight: bold;
	color: #990000;
	line-height: 90px;
	text-align: center;
	text-shadow: -1px -1px black,1px 1px black;
	background-image: url("../../image/washi6_3.jpg");
}
.dai_2 {	/*17文字以上*/
	width: 720px;
	height: 90px;
	margin-left: 140px;
	font-size: 32px;
	font-weight: bold;
	color: #990000;
	line-height: 90px;
	text-align: center;
	text-shadow: -1px -1px black,1px 1px black;
	background-image: url("../../image/washi6_3.jpg");
}

/*  ギフトタイトル*/
.gift_dai_1 {		/*16文字以下*/
	width: 720px;
	height: 110px;
	margin-left: 140px;
	font-size: 40px;
	font-weight: bold;
	color: #990000;
	line-height: 58px;
	text-align: center;
	text-shadow: -1px -1px black,1px 1px black;
	background-image: url("../../image/washi6_3.jpg");
}
.gift_dai_2 {		/*17文字以上*/
	width: 720px;
	height: 95px;
	margin-left: 140px;
	font-size: 32px;
	font-weight: bold;
	color: #990000;
	line-height: 47px;
	text-align: center;
	text-shadow: -1px -1px black,1px 1px black;
	background-image: url("../../image/washi6_3.jpg");
}


/*  ギフト説明*/
.gift_tyuui {
	background-image: url("../../image/washi4.jpg");
	margin-left: 100px;
	width: 800px;
}

.gift_comment {
	width: 750px;
	margin-left: 25px;
	font-size: 22px;
	line-height: 26px;
	font-weight: bold;
	color: black;	
}


/*左側*/
/*品物*/
.sina {
	position: relative;
	width: 770px;
	height: 530px;
	margin-bottom: 0px;
	margin-top: 20px;
	overflow: auto;
}
.sina_fax_link {
	position: relative;
	width: 770px;
	height: 530px;
	margin-bottom: 0px;
	margin-top: 20px;
	margin-left: 115px;
	overflow: auto;
}
.ita {
	width:620px;
	height: 520px;	
	margin-left: 70px;
}
.syasin {
	position: absolute;
	width: 600px;
	height: 500px;
	top: 10px;
	left: 80px;
}

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

.slide_comment{
	position: absolute;
	top: 5px;
	left: 10px;
	font-size: 30px;
	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: 500px;
	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 { /*写真3枚の場合 */
	width: 33.3%;
	height: 100%;
	font-size: 16px;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
}
.s_4_slide div { /*写真4枚の場合 */
	width: 25%;
	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_3_slide1 { 
	transform: translateX(0);	
}
.s_3_slide2 {
	transform: translateX(-33.3%);
}
.s_3_slide3 {
	transform: translateX(-66.6%);
}
/*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: 20px;
height: 20px;
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: 20px;
height: 20px;
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 {
width: 90%;
position: absolute;
bottom: 10px;
display: flex;
column-gap: 18px;
z-index: 10;
justify-content: center;
align-items: center;
}
.indicator li {
width: 14px;
height: 14px;
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 {
	margin-top: 10px;
	clear: left;
	width: 800px;
	margin-left: 100px;
	background-image: url("../../image/kami3.jpg");
}
.kaisetu_kukuri {
	width:750px;
	margin-left:25px;
}

.kaisetu_left {
	width:375px;
	margin-left:0;
	float:left;
}
.kaisetu_right {
	width:375px;
	margin-left:0; 
	float:right;
}

.setumei {	
	font-size: 26px;
	color: #330055;
	line-height: 36px;
	font-weight: bold;
	margin: 10px;
}
.nedan {
	font-size: 24px;
	text-align: right;
	color: #770000;
	line-height: 24px;
	font-weight: bold;
	margin: 8px;
}
.nedan_2 {
	font-size: 24px;
	text-align: left;
	color: #770000;
	line-height: 24px;
	font-weight: bold;
	margin: 8px;
}

.naiyo {
	font-size: 24px;
	text-align: right;
	color: #000000;
	line-height: 24px;
	font-weight: bold;
	margin: 8px;
}
.naiyo_2 {
	font-size: 24px;
	text-align: left;
	color: #000000;
	line-height: 24px;
	font-weight: bold;
	margin: 8px;
}
.naiyo_zaiyo {
	font-size: 20px;
	text-align: right;
	color: #000000;
	line-height: 24px;
	font-weight: bold;
	margin: 8px;
}
.naiyo_zairyo_2 {
	font-size: 20px;
	text-align: left;
	color: #000000;
	line-height: 24px;
	font-weight: bold;
	margin: 8px;
}

.weekend_meyasu {
	font-size: 24px;
	text-align: center;
	color: navy;
	line-height: 24px;
	font-weight: bold;
	margin: 8px;
}

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


/*スマホ用ナビ*/
.nav_mobile {
	display: none;
}

/*パソコン用ナビ*/
.nav {
	font-size: 18px;
	font-weight: bold;
	padding: 0px 0px;
	background-color: #333;
	width: 200px;
	line-height: 20px;
	margin-top: 20px;
}
.nav-list {
	margin: 0px;
	padding:0px;
}
.nav-item {
	list-style-type: none;
	text-align: center;
	color: #fff;
	padding: 15px 0px;
}
/*リンク*/
a {
	text-decoration: none;/*リンクの下線　なし*/
}
a:link {
	color: #6666cd;
}
a:hover {
	text-decoration: none;
}
.nav-item:hover{
	background: #77293d;
}
.nav-item a:link {
	color: #fff;
}
.nav-item a:visited {
	color: #fff;
}
/*左右ページ*/
.wrapper {
	width: 1000px;
	overflow: auto;
}
.left-content {
	float: left;
	width: 730px;
	margin-right: 0px;
}
.right-content {
	float: right;
	width: 200px;
	margin-right: 70px;
}



/*販売*/
.skip_zyotai {
	width: 800px;
	margin-left: 100px;
	text-align: center;
	margin-bottom: 0px;
	background-image: url("../../image/washi2.jpg");
}
.syosai {
	margin-top: 0px;
	color: yellow;
	font-size: 22px;
}

.syosai_2 {
	margin-top: 0px;
	color: black;
	font-size: 22px;
}

.buy {
	width: 600px;
	text-align: center;
	font-size:26px;
	margin-top: 20px;
	margin-left: 200px;
	background-image: url("../../image/washi22.jpg");
}
.buy_naiyo {
	width: 500px;
	margin-left: 50px;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
}

.buy_wrapper {
	width:500px;
	margin-left:0px;
	margin-top:0px;
}
.buy_left {
	width: 250px;
	margin-left:0;
	float:left;
	text-align: right;
}
.buy_right {
	width: 250px;
	margin-left:0; 
	float:right;
	text-align: left;
}

.koumoku {
	color: black;
	font-weight: bold;
	line-height: 1;
	margin: 0px;
}
.max_pack_tyuui_koumoku {
	color: red;
	font-size: 16px;
	font-weight: bold;
	margin: 0px;
}

.buy_select_yoryo {
	width: 110px;
	height: 35px;
	font-size:30px;
	text-align: right;
}
.buy_select_pack {
	width: 90px;
	height: 35px;
	font-size:30px;
	text-align: right;
}
.text_size {
	width: 100px;
	height: 40px;
	font-size:30px;
}
.yohaku {
	font-size: 14px;
	line-height: 1;
	margin: 0px;
}

/*到着日指定*/
.tyakubi_p {
	width: 800px;
	margin-left: 100px;
	font-size:22px;
	color: white;
	background-color: dimgray;
}


/* ギフト用 */
.buy_naiyo_gift {
	width: 550px;
	margin-left: 25px;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
}

.buy_wrapper_gift {
	width:550x;
	margin-left:0px;
	margin-top:0px;
}
.buy_left_gift {
	width:275px;
	margin-left:0;
	float:left;
	text-align: right;
}
.buy_right_gift {
	width:275px;
	margin-left:0; 
	float:right;
	text-align: left;
}


.noshi {
	width: 150px;
	height: 35px;
	font-size:24px;
	font-weight: bold;
}
.noshi_text {
	width: 542px;
	height: 100px;
	font-size:24px;
	font-weight: bold;
}
.kigen_gift_2 {
	font-size: 24px;
	text-align: right;
	color: #000000;
	line-height: 24px;
	font-weight: bold;
	margin: 8px;
	margin-right: 150px;
}
.gift_comment_2 {
	font-size: 22px;
	line-height: 26px;
	font-weight: bold;
	color: red;	
	text-align: left;
	margin-left: 20px;
}
.gift_comment_3 {
	font-size: 26px;
	line-height: 26px;
	font-weight: bold;
	color: black;
	text-align: left;
	margin-bottom: 10px;
	margin-left: 40px;
}

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



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


/*年末用コメント*/
.buy_nenmatu {
	width: 800px;
	margin-left: 100px;
	background-image: url("../../image/washi22.jpg");
}
.nenmatu_comment_kukuri {
	width: 680px;
	margin-left: 60px;
}
.nenmatu_comment {
	color: black;
	font-size: 20px;
	font-weight: bold;
	margin: 0px;
}
/*欠品コメント*/
.keppin_comment {
	color: black;
	font-size: 20px;
	font-weight: bold;
	margin: 0px;
	text-align: center;
}
.yohaku_2 {
	font-size: 1px;
	margin: 0px;
}

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

.weekend_setumei {
	width:700px;
	margin-left: 50px;
	margin-top: 0px;
	color: black;
	font-size: 22px;
	font-weight: bold;
}



/*個別画面の戻るボタン*/
.kobetu_button {
	width: 100px;
	height: 40px;
	font-size: 20px;
}

.button_kukuri {
	text-align: center;
} 
.button_size {
	width: 170px;
	height: 40px;
	font-size:20px;
}
.button_size_nenmatu {
	width: 240px;
	height: 40px;
	font-size:20px;
}
.button {
	text-align: center;
} 




/*データベース接続失敗*/
.syougai {
	text-align: center;
	margin-top: 100px;
}
.syougai_span {
	font-size: 30px;
}
.button_size_syougai {
	width: 250px;
	height: 45px;
	font-size:26px;
	margin-top: 50px;
	margin-bottom: 50px;
}
.button_size_syougai a:link {
	color: black;
	text-decoration: none;
}
/*訪問済*/
.button_size_syougai a:visited {
	color: black;
}


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





