
/****************************************************************************/
/*									共通									*/
/****************************************************************************/

body {
	font-family: serif;
	color: #A27133;
}

/* 見出し */
h1 {
	font-size: 40px;
	color: #A80C36;
}

h2 {
	font-size: 30px;
	color: #A80C36;
}

h3 {
	font-size: 24px;
	color: #A80C36;
	font-weight: bold;
}

a{
  color: #A80C36;
  transition: color 0.3s;
}

a:hover{
  opacity: 0.5;
}

.bold {
	font-weight: bold;
}

/* floatクリア */
.clear_float {
	clear: both;
}

/* ページトップアイコン */
.page_top {
	padding: 40px 0;
}

.page_top a {
	display: block;
	width: 50px;
	margin: 0 auto;
}

.page_top a img.page_top_icon {
	width: 100%;
}

/* PC用の画像は表示 */
.pc_image {
	display: block;
}

/* スマホ用の画像を非表示 */
.sp_image {
	display: none;
}

/* スマホ用のメニューエリアを非表示 */
#sp_menu_area {
	display: none;
}




/****************************************************************************/
/*						ヘッダーブロック（TOP画面以外）						*/
/****************************************************************************/

/* 大枠 */
header {
	/* padding: 10px 0; */
    background-color: #FFFBF6;
    font-size: 36px;
    position: fixed;
    width: 100%;
    z-index: 999;
}
header #pc_menu_area{
	display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

/* ロゴ */
header #header_logo {
	float: left;
}

header #header_logo img {
	width: auto;
	height: 60px;
	margin-left: 50px;
}

/* メニュー */
header #header_menu {
	/* float: right;
	margin-right: 50px; */
	display: flex;
    align-items: center;
}

header #header_menu ul#menu_ul {
	list-style: none;
}

header #header_menu ul#menu_ul li {
	padding: 10px;
	display: inline-block;
}

header #header_menu ul#menu_ul li a {
	color: #A80C36;
	font-size: 20px;
	text-decoration: none;
}

header #header_menu ul#menu_ul li img#instagram_icon,
header #header_menu ul#menu_ul li img#cart_icon {
	width: 20px;
	height: 20px;
}

header #header_menu ul#menu_ul li img#facebook_icon {
	width: 11px;
	height: 20px;
}

/* サブメニュー */
header #header_menu ul#menu_ul li ul.sub_menu_ul {
	display: none;
	position: absolute;
	top: 62px;
	bottom: 0;
	list-style: none;
	z-index: 1000;
	text-align: left;
}

header #header_menu ul#menu_ul li:hover ul.sub_menu_ul {
	display: block;
}

header #header_menu ul#menu_ul li ul.sub_menu_ul li {
	padding: 10px 10px 15px;
    display: -webkit-box;
    background-color: #A80C36;
    opacity: 0.8;
    height: 10px;
}

header #header_menu ul#menu_ul li ul.sub_menu_ul li a {
	color: white;
    font-size: 16px;
    display: block;
}




/****************************************************************************/
/*							メインコンテンツのブロック						*/
/****************************************************************************/
main{
	background-color: #FFFBF6;
	font-size: 20px;
	min-height: calc(100vh - 194px);
}




/****************************************************************************/
/*									TOP画面									*/
/****************************************************************************/

/* 大枠 */
#index {
	text-align: center;
	background-color: #FFFBF6;
	padding-bottom: 1px;
}

/********************    共通    ********************/

/* 画像の上に文字を表示 */
#index #online_shop-banner p.name_e,
#index #top_sweets_menu #top_sweets_menu_contents p.name_e,
#index #top_pick_up #top_pick_up_contents p.name_e,
#index #top_gallary #top_gallary_contents p.name_e,
#index #top_info #top_info_contents p.name_e  {
	position: absolute;
	color: white;
	font-size: 2vw;
	font-family: serif;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	line-height: 1.2em;
	font-weight: bold;
	width: 70%;
}

#index #online_shop-banner p.name_j,
#index #top_sweets_menu #top_sweets_menu_contents p.name_j,
#index #top_pick_up #top_pick_up_contents p.name_j,
#index #top_gallary #top_gallary_contents p.name_j,
#index #top_info #top_info_contents p.name_j {
	display: none;
	width: 70%;
}

/* 画像にマウスを乗せたら、赤色のフィルターをかけて日本語を表示する */
#index #online_shop-banner .top_banner_img:hover,
#index #top_sweets_menu #top_sweets_menu_contents .top_sweets_menu_img:hover,
#index #top_pick_up #top_pick_up_contents .top_pick_up_img:hover,
#index #top_gallary #top_gallary_contents .top_gallary_img:hover {
	background-color: #A80C36;
	opacity: 0.8;
}

#index #online_shop-banner .top_banner_img:hover img.pc_image,
#index #top_sweets_menu #top_sweets_menu_contents .top_sweets_menu_img:hover img.pc_image,
#index #top_pick_up #top_pick_up_contents .top_pick_up_img:hover img.pc_image,
#index #top_gallary #top_gallary_contents .top_gallary_img:hover img.pc_image,
#index #top_info #top_info_contents .top_info_img:hover img.pc_image {
	opacity: 0.6;
	display: block;
}

#index #online_shop-banner .top_banner_img:hover p.name_e,
#index #top_sweets_menu #top_sweets_menu_contents .top_sweets_menu_img:hover p.name_e,
#index #top_pick_up #top_pick_up_contents .top_pick_up_img:hover p.name_e,
#index #top_gallary #top_gallary_contents .top_gallary_img:hover p.name_e,
#index #top_info #top_info_contents .top_info_img:hover p.name_e {
	display: none;
}

#index #online_shop-banner .top_banner_img:hover p.name_j,
#index #top_sweets_menu #top_sweets_menu_contents .top_sweets_menu_img:hover p.name_j,
#index #top_pick_up #top_pick_up_contents .top_pick_up_img:hover p.name_j,
#index #top_gallary #top_gallary_contents .top_gallary_img:hover p.name_j,
#index #top_info #top_info_contents .top_info_img:hover p.name_j {
	display: inline;
	position: absolute;
	color: white;
	font-size: 1.5vw;
	font-family: serif;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	line-height: 1.3em;
	font-weight: bold;
}


/********************    動画    ********************/
#index #video_area {
	position: relative;
    width: calc(100% - 40px);
    height: calc(100vh - 20px);
    overflow: hidden;
    box-sizing: border-box;
    margin: auto;
	top: 20px;
}

#index #video_area video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/********************    ヘッダー    ********************/
#index #top_header {
	width: 100%;
	padding: 10px 0;
	background-color: #FFFBF6;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 999;
}

/* メニュー */
#index #top_header ul#menu_ul {
	list-style: none;
}

#index #top_header ul#menu_ul li {
	padding: 1.5%;
	display: inline-block;
}

#index #top_header ul#menu_ul li a {
	color: #A80C36;
	font-size: 20px;
	text-decoration: none;
}
#index #top_header ul#menu_ul .online_shop-top {
	background-color: #A80C36;
    padding: 11px 0px 10px 0;
	width: 100%;
	max-width: 180px;
}
header #header_menu ul#menu_ul .online_shop-top {
	background-color: #A80C36;
    padding: 27px 24px 27px 24px;
}
header #header_menu ul#menu_ul .online_shop-top a,
#index #top_header ul#menu_ul .online_shop-top a{
	color: #fff;
}
header #header_menu ul#menu_ul .online_shop-top a img,
#index #top_header ul#menu_ul .online_shop-top a img{
	margin: 0 4px 0 0;
}

#index #top_header ul#menu_ul li img#instagram_icon,
#index #top_header ul#menu_ul li img#cart_icon {
	width: 20px;
	height: 20px;
}

#index #top_header ul#menu_ul li img#facebook_icon {
	width: 11px;
	height: 20px;
}

/* サブメニュー */
#index #top_header ul#menu_ul li ul.sub_menu_ul {
	display: none;
    position: absolute;
    top: 62px;
    bottom: 0;
    list-style: none;
    text-align: left;
	z-index: 1001;
}

#index #top_header ul#menu_ul li:hover ul.sub_menu_ul {
	display: block;
}

#index #top_header ul#menu_ul li ul.sub_menu_ul li {
	padding: 5px 10px;
	display: block;
	background-color: #A80C36;
	opacity: 0.8;
	height: 25px;
}

#index #top_header ul#menu_ul li ul.sub_menu_ul li a {
	color: white;
	font-size: 16px;
}


/***********************************************************/
/* スライド画像を非表示 */
#index #slide_image_area {
	display: none;
}

/* 時計アイコン */
#index #tokei_icon_area {
	margin: 60px auto 0 auto;
	width: 120px;
}

#index #tokei_icon_area #tokei_icon {
	width: 100%;
}

/* キャッチコピー */
#index #catch_copy {
	margin: 30px 0 60px 0;
	line-height: 50px;
}


/********************    Sweets menu    ********************/
/* 中枠 */
#index #top_sweets_menu {
	margin: 150px 100px 0 100px;
}

#index #top_sweets_menu #top_sweets_menu_contents {
	margin-top: 40px;
}

/* 1列の画像を等間隔に並べる */
#index #top_sweets_menu #top_sweets_menu_contents .sweets_menu_middle {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	width: 95%;
	margin: 0 auto;
}

#index #top_sweets_menu #top_sweets_menu_contents .sweets_menu_middle a {
	display: block;
	width: 31.5%;
	margin-bottom: 2.5%;
}

#index #top_sweets_menu #top_sweets_menu_contents .sweets_menu_middle .top_sweets_menu_img {
	position: relative;
}

/* 下段 */
#index #top_sweets_menu #top_sweets_menu_contents .sweets_menu_bottom {
	width: 50%;
	margin: 0 auto;
}

#index #top_sweets_menu #top_sweets_menu_contents .sweets_menu_bottom .top_sweets_menu_img {
	position: relative;
	width: 100%;
}

/* 上段 */
#index #top_sweets_menu #top_sweets_menu_contents .sweets_menu_top {
	width: 95%;
	margin: 0 auto 2.5% auto;
}

#index #top_sweets_menu #top_sweets_menu_contents .sweets_menu_top .top_sweets_menu_img {
	position: relative;
	width: 100%;
}

#index #top_sweets_menu #top_sweets_menu_contents .sweets_menu_top img#christmas_banner {
	border: solid 1px #A80C36;
}

#index #top_sweets_menu #top_sweets_menu_contents img {
	width: 100%;
}


/********************    Pick Up    ********************/
/* 中枠 */
#index #top_pick_up {
	margin: 150px 100px 0 100px;
}

/* 1列の画像を等間隔に並べる */
#index #top_pick_up #top_pick_up_contents {
	width: 95%;
	margin: 40px auto 0 auto;
	display: flex;
	justify-content: space-between;
}

#index #top_pick_up #top_pick_up_contents a {
	display: block;
	width: 49%;
}

#index #top_pick_up #top_pick_up_contents .top_pick_up_img {
	position: relative;
}

#index #top_pick_up #top_pick_up_contents .top_pick_up_img img {
	width: 100%;
}

/********************    online shop banner    ********************/
#index #online_shop-banner{
	width: 100%;
	margin: 150px auto 0;
	max-width: 800px;
}
#index #online_shop-banner .top_banner_img{
	width: 100%;
	position: relative;
	margin-bottom: 5%;
}
#index #online_shop-banner .top_banner_img img{
	width: 100%;
}

#online_shop-banner a:first-child div img {
	border: 1px solid;
}
/********************    Information    ********************/
/* 中枠 */
#index #top_info {
	margin: 150px 100px 0 100px;
}

/* 1列の画像を等間隔に並べる */
/* #index #top_info #top_info_contents {
	width: 95%;
	margin: 40px auto 0 auto;
	display: flex;
	justify-content: space-evenly;
} */

/* #index #top_info #top_info_contents {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-inline: auto;
    column-gap: 3%;
    margin-top: 40px;
} */

#index #top_info #top_info_contents {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-inline: auto;
    column-gap: 3%;
    margin-top: 40px;
	max-width: 1166px;
	margin-inline: auto;
}

#index #top_info #top_info_contents .more {
	display: block;
	text-decoration: underline;
	font-size: 14px !important;
	color: #A80C36;
}

#index #top_info #top_info_contents a {
	
}
#index #top_info #top_info_contents a:hover {
	
}

#index #top_info #top_info_contents .top_info_img {
	/* width: 150px;
    margin: 1%; */
    line-height: 1.5em;
    font-size: 16px;
}

#index #top_info #top_info_contents .top_info_img img {
	width: 100%;
	height:auto;
}
#index #top_info #top_info_contents .top_info_img span {
	vertical-align: top;
	font-size: 15px;
    letter-spacing: 0.05rem;
	line-height: 1.5;
}

#index #top_info a#info_link {
	margin-top: 30px;
	display: inline-block;
	border: solid 1px #A27133;
	padding: 15px 60px;
	font-size: 15px;
	text-decoration: none;
	color: #A27133;
}

.top_info_image_wrapper {
	display: block;
	position: relative;
	width: 100%;
}

.top_info_image_wrapper::before {
	content: "";
	display: block;
	padding-top: 100%;
}

#index #top_info #top_info_contents .top_info_img img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}

#index #top_info #top_info_contents a {
	text-decoration: none;
	transition: all 0.3s ease;
	color: #A27133;
		/** CSS Gridで配置 **/
		display: block grid;
		/** 行方向のサイズを指定 **/
		grid-template-rows: subgrid;
		/** 4行分のサイズを使う **/
		grid-row: span 5;
		row-gap: 10px;
}



/********************    Gallary    ********************/
/* 中枠 */
#index #top_gallary {
	margin: 150px 100px 0 100px;
}

/* 1列の画像を等間隔に並べる */
#index #top_gallary #top_gallary_contents {
	width: 95%;
	margin: 40px auto 0 auto;
	display: flex;
	justify-content: space-between;
}

#index #top_gallary #top_gallary_contents a {
	display: block;
	width: 32%;
}

#index #top_gallary #top_gallary_contents .top_gallary_img {
	position: relative;
}

#index #top_gallary #top_gallary_contents .top_gallary_img img {
	width: 100%;
}

#index #top_gallary a#gallary_link {
	margin-top: 30px;
	display: inline-block;
	border: solid 1px #A27133;
	padding: 15px 60px;
	font-size: 15px;
	text-decoration: none;
	color: #A27133;
}


/********************    About    ********************/
/* 中枠 */
#index #top_about {
	margin: 150px 100px 0 100px;
}

#index #top_about #top_about_contents {
	margin-top: 50px;
	position: relative;
}

/* 店舗情報 */
#index #top_about #top_about_contents #shop_info_area1 {
	width: 65%;
	top: 0;
	left: 0;
	z-index: 2;
}

#index #top_about #top_about_contents #shop_info_area1 img#naikan {
	width: 100%;
}

/* 店舗情報とカレンダーを均等に並べる */
#index #top_about #top_about_contents #shop_info_area1 #shop_info_area2 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#index #top_about #top_about_contents #shop_info_area1 #shop_info_area2 #shop_info_area3 {
	margin-top: 30px;
	text-align: left;
}

#index #top_about #top_about_contents #shop_info_area1 #shop_info_area2 #shop_info_area3 #address {
	margin-top: 35px;
	font-size: 15px;
	line-height: 25px;
}

#index #top_about #top_about_contents #shop_info_area1 #shop_info_area2 #shop_info_area3 a#about_link {
	margin-top: 35px;
	display: inline-block;
	border: solid 1px #A27133;
	padding: 15px 60px;
	font-size: 15px;
	text-decoration: none;
	color: #A27133;
}

/* カレンダー */
#index #top_about #top_about_contents #shop_info_area1 #shop_info_area2 #calendar {
	margin-top: 25px;
}

/* ページトップアイコン */
#index #top_icon img.page_top_icon {
	width: 50px;
	left: 48%;
	margin: 30px auto 100px;
}

/* ツリーアイコン（店舗情報の後ろに表示） */
#index #top_about #top_about_contents img#top_icon_tree {
	position: absolute;
	bottom: -260px;
	right: 0;
	width: 35%;
	z-index: 1;
}

/*駐車場情報*/
#parking_introduction_area {
    margin: 40px auto 0 auto;
    width: 65%;
    line-height: 40px;
    font-size: 18px;
}

#parking_introduction_area #parking_title {
    font-weight: bold;
    margin-bottom: 20px;
}

#parking_introduction_area .parking_text {
    font-size: 15px;
    line-height: 2em;
    margin-bottom: 30px;
}




/****************************************************************************/
/*								メニュー画面								*/
/****************************************************************************/

/* 大枠 */
#menu {
	text-align: center;
	padding: 140px 50px 10px 50px;
}

#menu #sweets_menu_contents {
	margin-top: 40px;
}

/* 1列の画像を等間隔に並べる */
#menu #sweets_menu_contents .sweets_menu_middle {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	width: 95%;
	margin: 0 auto;
}

#menu #sweets_menu_contents .sweets_menu_middle a {
	display: block;
	width: 32%;
	margin-bottom: 2.5%;
}

#menu #sweets_menu_contents .sweets_menu_middle .sweets_menu_img {
	position: relative;
}

/* 下段 */
#menu #sweets_menu_contents .sweets_menu_bottom {
	width: 50%;
	margin: 0 auto;
}

#menu #sweets_menu_contents .sweets_menu_bottom .sweets_menu_img {
	position: relative;
	width: 100%;
}

/* 上段 */
#menu #sweets_menu_contents .sweets_menu_top {
	width: 95%;
	margin: 0 auto 2.5% auto;
}

#menu #sweets_menu_contents .sweets_menu_top .sweets_menu_img {
	position: relative;
	width: 100%;
}

#menu #sweets_menu_contents .sweets_menu_top img#christmas_banner {
	border: solid 1px #A80C36;
}

#menu #sweets_menu_contents img {
	width: 100%;
}


/* 画像の上に文字を表示 */
#menu #sweets_menu_contents p.name_e {
	position: absolute;
	color: white;
	font-size: 2vw;
	font-family: serif;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	line-height: 1.2em;
	font-weight: bold;
}

#menu #sweets_menu_contents p.name_j {
	display: none;
	width: 70%;
}

/* 画像にマウスを乗せたら、赤色のフィルターをかけて日本語を表示する */
#menu #sweets_menu_contents .sweets_menu_img:hover {
	background-color: #A80C36;
	opacity: 0.8;
}

#menu #sweets_menu_contents .sweets_menu_img:hover img.pc_image {
	opacity: 0.6;
	display: block;
}

#menu #sweets_menu_contents .sweets_menu_img:hover p.name_e {
	display: none;
}

#menu #sweets_menu_contents .sweets_menu_img:hover p.name_j {
	display: inline;
	position: absolute;
	color: white;
	font-size: 1.5vw;
	font-family: serif;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	line-height: 1.3em;
	font-weight: bold;
}




/****************************************************************************/
/*								商品一覧画面								*/
/****************************************************************************/

/* 1列の画像を等間隔に並べる */
#menu ul.item_list {
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
	list-style: none;
}

#menu ul.item_list li {
	width: 20%;
	margin: 50px 0 0 50px;
	text-align: center;
	color: #A27133;
}

#menu ul.item_list li a {
	display: block;
	text-decoration: none;
}

#menu ul.item_list li a img {
	width: 100%;
}

/* 商品名 */
#menu ul.item_list li a .item_name{
	margin-top: 15px;
	color: #A27133;
	font-size: 18px;
}

/* 商品区分 */
#menu ul.item_list li a .item_kbn_area {
	margin-top: 10px;
	text-align: center;
}

#menu ul.item_list li a .item_kbn_area span.item_kbn_tentou,
#menu ul.item_list li a .item_kbn_area span.item_kbn_delivery {
	border-radius: 30px;
	width: 80px;
	padding: 5px 10px;
	font-family: monospace;
	font-size: 13px;
}

#menu ul.item_list li a .item_kbn_area span.item_kbn_tentou {
	color: #A80C36;
	border: 1px solid #A80C36;
}

#menu ul.item_list li a .item_kbn_area span.item_kbn_delivery {
	color: #A80C36;
	border: 1px solid #A80C36;
}

#menu ul.item_list li a .item_kbn_area span:nth-child(2) {
	margin-left: 20px;
}




/****************************************************************************/
/*								商品ページ									*/
/****************************************************************************/

/* 大枠 */
.item_page {
	text-align: center;
	padding: 140px 50px 10px 50px;
}

/* メイン画像 */
.item_page ul.slider {
	width: 76%;
	max-width: 800px;
	margin: 6% auto 0 auto;
}

.item_page ul.slider .slick-list .slick-track li {
	margin: 0 !important;
}

.item_page ul.slider .slick-list .slick-track li img {
	width: 100%;
	cursor: auto;
}

/* サムネ画像 */
.item_page .thmb-wrapper {
	width: 78%;
	max-width: 820px;
	margin: 3% auto 6% auto;
}

.item_page .thmb-wrapper .thumb {
}

.item_page .thmb-wrapper .thumb .slick-list .slick-track li {
	margin: 0 1% !important;
}

.item_page .thmb-wrapper .thumb .slick-list .slick-track li img{
	width: 100%;
}

/* 次へ前へボタン */
.item_page .thmb-wrapper .slick-prev:before,
.item_page .thmb-wrapper .slick-next:before {
	color: #A27133 !important;
}


/* 画像が1枚のみの場合 */
.item_page .image_only_one {
	width: 76%;
	max-width: 800px;
	margin: 6% auto;
}

.item_page .image_only_one img {
	width: 100%;
}

/* 商品名 */
.item_page .item_name {
	font-size: 40px;
}

/* 商品区分 */
.item_page .item_kbn_area {
	margin-top: 30px;
	text-align: center;
}

.item_page .item_kbn_area span.item_kbn_tentou,
.item_page .item_kbn_area span.item_kbn_delivery {
	border-radius: 30px;
	width: 100px;
	padding: 5px 10px;
	font-family: monospace;
	font-size: 15px;
}

.item_page .item_kbn_area span.item_kbn_tentou {
	color: #A80C36;
	border: 1px solid #A80C36;
}

.item_page .item_kbn_area span.item_kbn_delivery {
	color: #A80C36;
	border: 1px solid #A80C36;
}

.item_page .item_kbn_area span:nth-child(2) {
	margin-left: 20px;
}

/* 商品説明 */
.item_page .item_explanation {
	margin-top: 60px;
	line-height: 40px;
	font-size: 18px;
}

/* PC用ラインマーク */
.item_page .pc_line_icon,
.item_page .line_icon {
	margin: 60px 0;
}

.item_page .pc_line_icon img,
.item_page .line_icon img {
	width: 10%;
}


/* カートエリア */
.item_page .cart_area {
	float: left;
	width: 50%;
}

.item_page .cart_area table {
	margin: 0 40px 0 auto;
}

.item_page .cart_area table td {
	padding: 10px;
}

.item_page .cart_area table td.item_name_td,
.item_page .cart_area table td.item_unit_td {
	text-align: left;
}

.item_page .cart_area table td.item_price_td {
	text-align: right;
}

/* 個数のセレクトボックス */
.item_page .cart_area table td .select_ninacart_tag {
	position: relative;
	border: 1px solid #A27133;
}

.item_page .cart_area table td .select_ninacart_tag::before {
	position: absolute;
	top: 13px;
	right: 10px;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #A27133;
}

.item_page .cart_area table td .select_ninacart_tag select {
	width: 80px;
	height: 30px;
	padding-left: 5px;
	text-indent: 0.01px;
	border: none;
	outline: none;
	background: transparent;
	appearance: none;
	color: #A27133;
}

/* 「カートに入れる」ボタン */
.item_page .cart_area span.-btntxt {
	margin: 25px 50px 0 auto;
	display: block;
	border: solid 1px #A27133;
	width: 250px;
	padding: 15px 0;
	text-align: center;
	font-size: 15px;
	color: #A27133;
}

.item_page .cart_area a.cake__btn {
	text-decoration: none !important;
}


/* SP用ラインマーク */
.item_page .sp_line_icon {
	display: none;
}


/* その他商品情報エリア */
.item_page .etc_area {
	float: right;
	width: 50%;
	text-align: left;
	font-size: 14px;
	line-height: 26px;
}

/* ニナカート発送＆店頭予約ページリンク */
.item_page .ninacart_page_link_area {
	text-align: center;
}

.item_page .ninacart_page_link_area .ninacart_tentou_page_link_btn,
.item_page .ninacart_page_link_area .ninacart_delivery_page_link_btn {
	display: inline-block;
	width: 250px;
	padding: 10px 20px;
	font-size: 15px;
	text-decoration: none;
	text-align: center;
}

.item_page .ninacart_page_link_area .ninacart_tentou_page_link_btn {
	border: solid 1px #A80C36;
	color: #A80C36;
}

.item_page .ninacart_page_link_area .ninacart_delivery_page_link_btn {
	border: solid 1px #A80C36;
	color: #A80C36;
}

.item_page .ninacart_page_link_area a:nth-child(2) {
	margin-left: 20px;
}




/****************************************************************************/
/*						イラストデコレーション画面							*/
/****************************************************************************/

/* 大枠 */
#illustration_decoration {
	text-align: center;
	padding: 140px 50px 10px 50px;
}

#illustration_decoration #illustration_decoration_contents {
	margin-top: 60px;
}

#illustration_decoration #illustration_decoration_contents .illustration_decoration_comment1 {
	font-size: 25px;
	font-weight: bold;
}

#illustration_decoration #illustration_decoration_contents .illustration_decoration_comment2 {
	margin-top: 40px;
	color: #A80C36;
}

#illustration_decoration #illustration_decoration_contents .illustration_decoration_title {
	margin-top: 30px;
	color: #A80C36;
	font-size: 40px;
}

#illustration_decoration #illustration_decoration_contents .illustration_decoration_img {
	margin: 60px auto 0 auto;
	width: 70%;
}

#illustration_decoration #illustration_decoration_contents .illustration_decoration_img img {
	width: 100%;
	max-width: 900px;
    margin: auto;
}

#illustration_decoration #illustration_decoration_contents .illustration_decoration_comment3 {
	margin-top: 60px;
	font-size: 25px;
	color: #A80C36;
	font-weight: bold;
	line-height: 40px;
}

#illustration_decoration #illustration_decoration_contents .illustration_decoration_comment4 {
	margin: 40px auto 0 auto;
	width: 60%;
	max-width: 900px;
	text-align: left;
	line-height: 40px;
	font-size: 18px;
}

#illustration_decoration #illustration_decoration_contents .illustration_decoration_comment5 {
	margin-top: 40px;
	font-size: 18px;
}

/* ラインマーク */
#illustration_decoration #illustration_decoration_contents .line_icon {
	width: 15%;
	margin: 100px auto 100px auto;
}

#illustration_decoration #illustration_decoration_contents .line_icon img {
	width: 100%;
}

/* お問い合わせ先 */
#illustration_decoration #illustration_decoration_contents #contact_info_area {
}

#illustration_decoration #illustration_decoration_contents #contact_info_area #contact_info_title {
	font-size: 25px;
	color: #A80C36;
}

#illustration_decoration #illustration_decoration_contents #contact_info_area #phone {
	margin: 50px 0 0 0;
	font-size: 28px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#illustration_decoration #illustration_decoration_contents #contact_info_area #phone .phone_icon {
	width: 22px;
	margin-right: 20px;
}

#illustration_decoration #illustration_decoration_contents #contact_info_area #phone .phone_icon img {
	width: 100%;
}


/* 営業時間 */
#illustration_decoration #illustration_decoration_contents #contact_info_area #business_hours {
	margin: 30px 0 80px 0;
	font-size: 16px;
}




/****************************************************************************/
/*			Pick up 画面（一覧画面と商品詳細画面で同じcssを使用）			*/
/****************************************************************************/

/* 大枠 */
#pickup {
	text-align: center;
	padding: 140px 50px 10px 50px;
}

#pickup #pickup_contents {
	margin-top: 60px;
}

#pickup #pickup_contents .pickup_comment1 {
	font-size: 25px;
	font-weight: bold;
}

#pickup #pickup_contents .pickup_comment2 {
	margin-top: 40px;
	color: #A80C36;
}

#pickup #pickup_contents .pickup_title {
	margin-top: 30px;
	color: #A80C36;
	font-size: 40px;
}

#pickup #pickup_contents .pickup_img {
	margin: 60px auto 0 auto;
	width: 70%;
}

#pickup #pickup_contents .pickup_img img {
	width: 100%;
	max-width: 900px;
    margin: auto;
}

#pickup #pickup_contents .pickup_img img.second_img {
	margin-top: 35px;
}

#pickup #pickup_contents .pickup_comment3 {
	margin-top: 60px;
	font-size: 25px;
	color: #A80C36;
	font-weight: bold;
	line-height: 40px;
}

#pickup #pickup_contents .pickup_comment4 {
	margin: 40px auto 0 auto;
	width: 70%;
	max-width: 900px;
	text-align: left;
	line-height: 40px;
	font-size: 18px;
}

#pickup #pickup_contents a.pickup_link {
	margin-top: 40px;
	display: inline-block;
	border: solid 1px #A27133;
	padding: 15px 60px;
	font-size: 15px;
	text-decoration: none;
	color: #A27133;
}

/* ラインマーク */
#pickup #pickup_contents .line_icon {
	width: 15%;
	margin: 100px auto 100px auto;
}

#pickup #pickup_contents .line_icon img {
	width: 100%;
}

/* カートエリア */
#pickup #pickup_contents .cart_area {
	float: left;
	width: 50%;
}

#pickup #pickup_contents .cart_area table {
	margin: 0 40px 0 auto;
}

#pickup #pickup_contents .cart_area table td {
	padding: 10px;
}

/* 個数のセレクトボックス */
#pickup #pickup_contents .cart_area table td .select_ninacart_tag {
	position: relative;
	border: 1px solid #A27133;
}

#pickup #pickup_contents .cart_area table td .select_ninacart_tag::before {
	position: absolute;
	top: 13px;
	right: 10px;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #A27133;
}

#pickup #pickup_contents .cart_area table td .select_ninacart_tag select {
	width: 80px;
	height: 30px;
	padding-left: 5px;
	text-indent: 0.01px;
	border: none;
	outline: none;
	background: transparent;
	appearance: none;
	color: #A27133;
}

/* 「カートに入れる」ボタン */
#pickup #pickup_contents .cart_area span.-btntxt {
	margin: 25px 50px 0 auto;
    display: block;
    border: solid 1px #A27133;
    width: 250px;
    padding: 15px 0;
    text-align: center;
    font-size: 15px;
    color: #A27133;
}

#pickup #pickup_contents .cart_area a.cake__btn {
	text-decoration: none !important;
}


/* スマホ用ラインマーク */
#pickup #pickup_contents .sp_line_icon {
	display: none;
}


/* その他商品情報エリア */
#pickup #pickup_contents .etc_area {
	float: right;
	width: 50%;
	text-align: left;
	font-size: 14px;
	line-height: 26px;
}




/****************************************************************************/
/*			Gallary 画面（一覧画面と商品詳細画面で同じcssを使用）			*/
/****************************************************************************/

/* 大枠 */
#gallary {
	text-align: center;
	padding: 140px 50px 10px 50px;
}

#gallary #gallary_contents {
	margin-top: 60px;
}

#gallary #gallary_contents .gallary_title {
	margin-top: 30px;
	color: #A80C36;
	font-size: 40px;
	line-height: 60px;
}

#gallary #gallary_contents .gallary_img {
	margin: 60px auto 0 auto;
	width: 70%;
}

#gallary #gallary_contents .gallary_img img {
	width: 100%;
	max-width: 900px;
	margin: auto;
}

#gallary #gallary_contents .gallary_comment {
	margin: 40px auto 0 auto;
	width: 70%;
	max-width: 900px;
	text-align: left;
	line-height: 40px;
	font-size: 18px;
}

#gallary #gallary_contents a.gallary_link,
#gallary #gallary_contents a.gallary_all_link {
	margin-top: 40px;
	display: inline-block;
	border: solid 1px #A27133;
	padding: 15px 60px;
	font-size: 15px;
	text-decoration: none;
	color: #A27133;
}

#gallary #gallary_contents a.gallary_all_link {
	margin-top: 60px;
}

/* ラインマーク */
#gallary #gallary_contents .line_icon {
	width: 15%;
	margin: 100px auto 100px auto;
}

#gallary #gallary_contents .line_icon img {
	width: 100%;
}


/* 使用している商品はこちら */
#gallary #gallary_contents .use_item_area {
	margin-top: 100px;
}

#gallary #gallary_contents .use_item_area .use_item_title {
	color: #A80C36;
	font-weight: bold;
}

/* 1列の画像を等間隔に並べる */
#gallary #gallary_contents .use_item_area ul.item_list {
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
	list-style: none;
}

#gallary #gallary_contents .use_item_area ul.item_list li {
	width: 20%;
	margin: 50px 0 0 50px;
	text-align: center;
	color: #A27133;
}

#gallary #gallary_contents .use_item_area ul.item_list li a {
	display: block;
	text-decoration: none;
}

#gallary #gallary_contents .use_item_area ul.item_list li a img {
	width: 100%;
}

/* 商品名 */
#gallary #gallary_contents .use_item_area ul.item_list li a .item_name{
	margin-top: 15px;
	color: #A27133;
	font-size: 18px;
}

/* 商品区分 */
#gallary #gallary_contents .use_item_area ul.item_list li a .item_kbn {
	color: #A80C36;
	border: 1px solid #A80C36;
	border-radius: 30px;
	width: 80px;
	margin: 10px auto 0 auto;
	padding: 5px;
	font-family: monospace;
	font-size: 13px;
}




/****************************************************************************/
/*								店舗情報画面								*/
/****************************************************************************/

/* 大枠 */
#about {
	text-align: center;
	padding: 140px 50px 10px 50px;
}

#about #about_contents {
	margin-top: 60px;
}

/* お店紹介 */
#about #about_contents #shop_large_img {
	margin: 60px auto 0 auto;
	width: 65%;
}

#about #about_contents #shop_large_img img {
	width: 100%;
}

#about #about_contents #shop_introduction {
	margin: 40px auto 0 auto;
	width: 65%;
	text-align: left;
	line-height: 40px;
	font-size: 18px;
}

#about #about_contents #shop_small_image_area {
	margin: 50px auto 0 auto;
	width: 66.5%;
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

#about #about_contents #shop_small_image_area .shop_small_image {
	width: 32%;
	margin-bottom: 1%;
}

#about #about_contents #shop_small_image_area .shop_small_image img {
	width: 100%;
}

/* ラインマーク */
#about #about_contents .line_icon {
	width: 12%;
	margin: 100px auto 100px auto;
}

#about #about_contents .line_icon img {
	width: 100%;
}

/* シェフ紹介 */
#about #about_contents #chef_img {
	margin: 0 auto;
	width: 45%;
}

#about #about_contents #chef_img img {
	width: 100%;
	max-width: 500px;
    margin: auto;
}

#about #about_contents #chef_introduction_area {
	margin: 50px auto 0 auto;
	width: 65%;
}

#about #about_contents #chef_introduction_area #position {
}

#about #about_contents #chef_introduction_area #chef_name {
	margin-top: 20px;
	font-size: 32px;
	font-weight: bold;
}

#about #about_contents #chef_introduction_area .chef_introduction {
	margin-top: 60px;
	text-align: left;
	line-height: 40px;
	font-size: 18px;
}

.chef_heading {
	text-align: center;
}

hr.chef_hr {
	height: 1px;
	border: none;
	border-top: 1px solid;
	margin: 7px 0 20px;
}

/* 店舗情報 */
#about #about_contents #shop_info_area {
	width: 65%;
	margin: 0 auto;
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

#about #about_contents #shop_info_area #shop_info {
	text-align: left;
	margin-top: 10px;
}

#about #about_contents #shop_info_area #calendar {
}

#about #about_contents #shop_info_area #address {
	margin-top: 35px;
	font-size: 15px;
	line-height: 25px;
}

#about #about_contents #google_map {
	width: 65%;
	margin: 60px auto 0 auto;
}

#about #about_contents a#google_map_link {
	margin: 50px 0 30px 0;
	display: inline-block;
	border: solid 1px #A27133;
	padding: 15px 60px;
	font-size: 15px;
	text-decoration: none;
	color: #A27133;
}




/****************************************************************************/
/*								お問い合わせ画面							*/
/****************************************************************************/

/* 大枠 */
#contact {
	text-align: center;
	padding: 140px 50px 10px 50px;
}

#contact #contact_contents {
	margin-top: 60px;
}

#contact #contact_contents #summary {
	line-height: 40px;
}


/* ラインマーク */
#contact #contact_contents .line_icon {
	width: 12%;
	margin: 100px auto 100px auto;
}

#contact #contact_contents .line_icon img {
	width: 100%;
}


/* 問い合わせエリア */
#contact #contact_contents #q_a_area {
	margin: 60px auto 60px auto;
}

/* 個々の問い合わせのブロック */
#contact #contact_contents #q_a_area .question_block {
	margin: 0 auto 10px auto;
	width: 70%;
	text-align: center;
	color: #A27133;
}

/* 問い合わせ */
#contact #contact_contents #q_a_area .question_block input {
	display: none;
}

#contact #contact_contents #q_a_area .question_block label {
	display: block;
    text-align: left;
    margin-bottom: 10px;
    padding: 10px 0 18px;
    border-bottom: solid 2px #eeddc9;
    position: relative;
    font-size: 18px;
}

#contact #contact_contents #q_a_area .question_block label::after {
	content: '\025bc';
    padding: 13px 0 10px;
    position: absolute;
    right: 0;
    top: 0px;
    font-size: 12px;
}

/* 回答 */
#contact #contact_contents #q_a_area .answer {
	text-align: left;
    font-size: 15px;
    line-height: 40px;
    margin-bottom: 60px;
    line-height: 2em;
    display: none;
}

/* 問い合わせをクリックした時の動作 */
#contact #contact_contents #q_a_area .question_block #question01:checked ~ #answer01,
#contact #contact_contents #q_a_area .question_block #question02:checked ~ #answer02,
#contact #contact_contents #q_a_area .question_block #question03:checked ~ #answer03,
#contact #contact_contents #q_a_area .question_block #question04:checked ~ #answer04,
#contact #contact_contents #q_a_area .question_block #question05:checked ~ #answer05,
#contact #contact_contents #q_a_area .question_block #question06:checked ~ #answer06 {
	display: block;
}

#contact #contact_contents #q_a_area .question_block input:checked + label:after {
	content: '\025b2';
}

/* お問い合わせ先 */
#contact #contact_contents #contact_info_area {
	margin-top: 60px;
}

#contact #contact_contents #contact_info_area #phone {
	margin-bottom: 10px;
	font-size: 28px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#contact #contact_contents #contact_info_area #phone .phone_icon {
	width: 22px;
	margin-right: 20px;
}

#contact #contact_contents #contact_info_area #phone .phone_icon img {
	width: 100%;
}


/* 営業時間 */
#contact #contact_contents #contact_info_area #business_hours {
	margin: 30px 0 80px 0;
	font-size: 16px;
}




/****************************************************************************/
/*									求人画面								*/
/****************************************************************************/

/* 大枠 */
#recruit {
	text-align: center;
	padding: 140px 50px 10px 50px;
}

#recruit #recruit_contents {
	margin-top: 60px;
}

#recruit #recruit_contents #recruit_comment1 {
	margin: 40px auto 0 auto;
	width: 70%;
	line-height: 40px;
}

/* ラインマーク */
#recruit #recruit_contents .line_icon {
	width: 10%;
	margin: 100px auto 100px auto;
}

#recruit #recruit_contents .line_icon img {
	width: 100%;
}

#recruit #recruit_contents #recruit_comment2 {
	margin: 40px auto 0 auto;
	width: 70%;
/*	height: 300px;*/
	line-height: 40px;
}

.rec_table {
  width: 70%;
  margin: 0 auto;
}

.rec_table table {
  margin: 20px auto;
}
.rec_table th {
 /* background: #e9727e;
  color: #fff;*/
  width: 15%;
  border-bottom: dotted  1px #ccc;

  padding: 10px;
}
.rec_table td {
  width: 30%;
  border-bottom: dotted  1px #ccc;
  padding: 10px;
  text-align: left;
}
 
@media screen and (max-width: 640px) {
  .rec_table td:last-child {
    border-bottom: dotted  1px #ccc;
    width: 100%;
  }
  .rec_table {
    width: 80%;
  }
  .rec_table th,
  .rec_table td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
}

/****************************************************************************/
/*							フッターブロック								*/
/****************************************************************************/

/* 大枠 */
footer {
	clear: both;
	width: 100%;
	padding: 40px 0 40px 0;
	background-image: url("../image/bg@2x.jpg");
	text-align: center;
	position: relative;
	z-index: 998;
}

footer #footer_logo img {
	width: 200px;
	margin: 0 auto;
}

footer #copyright {
	margin-top: 20px;
	color: #2A1700;
	font-size: 14px;
}




/****************************************************************************/
/*								お知らせ画面								*/
/****************************************************************************/

/* 大枠 */
#info_main {
	text-align: center;
	padding: 140px 2% 10px;
}

#info_main #info_main_contents {
	margin: 60px auto 0 auto;
    width: 65%;
}

/* お知らせ内容 */
#info_main #info_main_contents #info_main_area, #info_main #info_main_contents #info_list_area {
    margin: 50px auto 0 auto;
}

#info_main #info_main_contents #info_main_area .info_main_title{
	text-align: center;
	font-size: 18px;
}
#info_main #info_main_contents #info_main_area .info_main_txt {
    margin-top: 60px;
    text-align: left;
    line-height: 1.8em;
    font-size: 16px;
}

#info_main #info_main_contents #info_list_area {
	display: flex;
	border-top: 1px solid;
    padding: 1% 0;
	column-gap: 10px;
}

#info_main #info_main_contents #info_list_area .info_list_txt a {
	text-decoration: none;
}

#info_main #info_main_contents #info_list_area .info_list_img{
	margin: 0 1% 0 auto;
}

#info_main #info_main_contents #info_list_area .info_list_txt {
    text-align: left;
    line-height: 1.8em;
    font-size: 16px;
}

span.info_cate {display: block;}

span.info_cate a,
#index #top_info #top_info_contents .top_info_img span.info_cate {
    text-decoration: none;
    border: 1px solid #A80C36;
    border-radius: 15px;
    padding: 3px 9px 2px;
    font-size: 11px;
    display: block;
    line-height: 1.2;
    /* margin-block: 3px 8px; */
    letter-spacing: 0.05rem;
	color: #A80C36 !important;
	max-width: max-content;
	text-wrap: balance;
	font-weight: bold;
}

.info_cate_title {
	text-wrap: balance;
}

#index #top_info #top_info_contents .top_info_img span.info_cate {
	margin-inline: auto;
}

#index #top_info #top_info_contents .top_info_img span.imfo_date {
    font-size: 14px;
    padding-top: 10px;
    line-height: 1;
}

.imfo_date {
	display: block;
}

#info_main #info_main_contents #info_main_large_img {
	margin: 60px auto 0 auto;
	
}

#info_main #info_main_contents #info_main_large_img img {
	width: 100%;
    height: auto;
    /* max-width: 65vw; */
    max-height: 45vh;
    object-position: top;
    object-fit: cover;
}


/****************************************************************************/
/*						　　　　　　ジェラートLP　　							　　*/
/****************************************************************************/

/* 大枠 */
#gelato {
	text-align: center;
	padding: 0;
}

/*ジェラートトップ画像*/
#gelato #gelaro_topimg {
	position: relative;
	padding-top: 90px;
}

#gelato #gelaro_topimg #gelato_topimg_pc {
	width: 100%;
	height: auto;
}

#gelato #gelaro_topimg #gelato_main_pc {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
}

#gelato #gelaro_topimg #gelato_topimg_sp {
	display: none;
}

#gelato #gelaro_topimg #gelato_main_sp {
    display: none;
}

#gelato #gelato_contents {
	margin: 60px 0;
}

#gelato #gelato_contents h1 {
	color: #A80C36;
	font-size: 25px;
	margin-top: 110px;
	font-weight: 500;
	letter-spacing: 0.05em;
}

#gelato #gelato_contents .gelato_comment1 {
	margin: 40px auto 0 auto;
	width: 60%;
	max-width: 900px;
	line-height: 40px;
	font-size: 18px;
}

#gelato #gelato_contents h2 {
	font-family: mina,Mina,'Mina',serif;
	font-weight: 400;
	font-style: normal;
	font-size: 44px;
	margin-bottom: 60px;
}

#gelato #gelato_contents .gelato_hedding {
	margin-bottom: 60px;
}

#gelato #gelato_contents #flavor {
    margin-top: 110px;
}

#gelato #gelato_contents #flavor ul#flavor_list {
    margin-bottom: 150px;
}

#gelato #gelato_contents #flavor ul#flavor_list .flavor_contents {
    margin-bottom: 70px;
}

#gelato #gelato_contents #flavor ul#flavor_list .flavor_contents .flavor_text {
    width: 300px;
	text-align: left;
	display: inline-block;
}

#gelato #gelato_contents .flavor_comment {
    font-size: 14px;
    margin: 15px 0 5px;
    line-height: 1.8em;
}

#gelato #gelato_contents .allergy {
    font-size: 14px;
    border: 1px solid #A27133;
    border-radius: 10px;
    padding: 2px 5px;
    display: inline-block;
}

#gelato #gelato_contents .allergy_word {
    font-size: 14px;
    display: inline;
    margin-left: 3px;
}

#gelato #gelato_contents #flavor ul#flavor_list .flavor_contents img {
    vertical-align: top;
}

#gelato #gelato_contents #gelato_set #gelato_set_head {
	display: flex;
    position: relative;
}

#gelato #gelato_contents #gelato_set #gelato_set_head #gelaro_gift_img {
    width: 60%;
}

#gelato #gelato_contents #gelato_set #gelato_set_head .gelato_set_comment {
    text-align: left;
    position: absolute;
    left: 65%;
    top: 25%;
}

#gelato #gelato_contents #gelato_set #gelato_set_head .gelato_set_comment p {
    font-size: 18px;
    line-height: 40px;
}

#gelato #gelato_contents #gelato_set ul#gelato_set_item {
	display: inline-flex;
	margin: 80px 0;
}

#gelato #gelato_contents #gelato_set ul#gelato_set_item li {
    padding: 0 30px;
}

#gelato #gelato_contents #gelato_set ul#gelato_set_item img {
    margin-bottom: 20px;
    filter: drop-shadow(5px 5px 4px rgba(0,0,0,0.2));
}

/* カートエリア */
#gelato #gelato_contents #gelato_set .cart_area table {
	margin: 0 auto;
}

#gelato #gelato_contents #gelato_set .cart_area table tr {
	display: block;
	margin: 10px 0;
}
	
#gelato #gelato_contents #gelato_set .cart_area table td {
	padding: 5px 8px;
	font-size: 20px;
	position: relative;
}
	
/* 個数のセレクトボックス */
#gelato #gelato_contents #gelato_set .cart_area table td .select_ninacart_tag::before {
	position: absolute;
    top: 17px;
    right: 17px;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #A27133;
}
	
#gelato #gelato_contents #gelato_set .cart_area table td .select_ninacart_tag select {
	width: 80px;
    height: 30px;
    padding-left: 5px;
    text-indent: 0.01px;
    border: 1px solid #A27133;
    outline: none;
    background: transparent;
    appearance: none;
    color: #A27133;
}
	
/* 「カートに入れる」ボタン */
#gelato #gelato_contents #gelato_set .cart_area span.-btntxt {
	margin: 20px auto 30px;
    display: block;
    border: solid 1px #A27133;
    width: 250px;
    padding: 15px 0;
    text-align: center;
    font-size: 15px;
    color: #A27133;
}

#gelato #gelato_contents #gelato_set a {
	text-decoration: none;
}
	
/* その他商品情報エリア */
#gelato #gelato_contents #gelato_set .etc_area {
    display: inline-block;
    line-height: 25px;
    font-size: 14px;
    text-align: left;
    margin: auto;
}


/****************************************************************************/
/*						　　ジェラートLP　スマホ版　							　　*/
/****************************************************************************/

@media only screen and (max-width: 800px){

/* 大枠 */
#gelato {
	margin: -15px;
}

#gelato #gelaro_topimg {
	padding-top: 0;
}

#gelato #gelaro_topimg #gelato_topimg_pc {
	display: none;
}

#gelato #gelaro_topimg #gelato_main_pc {
    display: none;
}

#gelato #gelaro_topimg #gelato_topimg_sp {
	display: block;
	width: 100%;
	height: auto;
}

#gelato #gelaro_topimg #gelato_main_sp {
	display: block;
    width: 100%;
    height: auto;
    position: absolute;
    bottom: -1px;
    left: 0;
}

#gelato .gelato_logo {
	width: 80%;
	max-width: 400px;
}

#gelato #gelato_contents h1 {
	margin-top: 70px;
}

#gelato #gelato_contents .gelato_comment1 {
    width: 90%;
}

#gelato #gelato_contents #flavor {
    margin-top: 20%;
}

#gelato #gelato_contents #flavor ul#flavor_list {
    margin: 0 0 20% 5%;
    width: 95%;
}

#gelato #gelato_contents #flavor ul#flavor_list .flavor_contents {
    display: flex;
	margin-bottom: 13%;
}

#gelato #gelato_contents #flavor ul#flavor_list .flavor_contents .flavor_text {
    width: 50%;
}
	
#gelato #gelato_contents #flavor ul#flavor_list .flavor_contents .flavor_line {
    width: 100%;
}

#gelato #gelato_contents .flavor_comment {
    margin: 5px 0 5px;
}

#gelato #gelato_contents #flavor ul#flavor_list .flavor_contents .flavor_img {
    width: 50%;
	height: 50%;
}
	
#gelato #gelato_contents #gelato_set #gelato_set_head {
	display: block;
}

	
#gelato #gelato_contents #gelato_set #gelato_set_head #gelaro_gift_img {
    width: 95%;
    margin-left: -5%;
}

#gelato #gelato_contents h2 {
	margin-bottom: 11%;
}

#gelato #gelato_contents #gelato_set #gelato_set_head .gelato_set_comment {
    text-align: center;
    position: relative;
    left: 0;
    top: 0;
	margin-top: 10%;
}

#gelato #gelato_contents #gelato_set #gelato_set_head .gelato_set_comment p {
    width: 90%;
    margin: auto;
}
	
#gelato #gelato_contents #gelato_set ul#gelato_set_item {
	display: block;
	margin: 20px 0;
}
	
#gelato #gelato_contents #gelato_set ul#gelato_set_item li {
    padding: 30px 0;
}
	
/* その他商品情報エリア */
#gelato #gelato_contents #gelato_set .etc_area {
    max-width: 80%;
}
	
}



/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
/*																			*/
/*							レスポンシブ対応								*/
/*																			*/
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/

@media only screen and (max-width: 800px){
	
	/****************************************************************************/
	/*									共通									*/
	/****************************************************************************/
	
	/* 見出し */
	h2 {
		font-size: 18px;
		color: #A80C36;
	}
	
	h3 {
		font-size: 17px;
	}
	
	/* ページトップアイコン */
	.page_top {
		margin: 6% 0;
	}
	
	.page_top a {
		display: block;
		width: 14%;
		margin: 0 auto;
	}
	
	.page_top a img.page_top_icon {
		width: 100%;
	}
	
	/* PC用の画像を非表示 */
	.pc_image {
		display: none !important;
	}
	
	/* PC用のヘッダーメニューを非表示 */
	header #pc_menu_area,
	#pc_menu_area {
		display: none;
	}
	
	/* スマホ用の画像を表示 */
	.sp_image {
		display: block;
	}
	
	
	/********************    スマホ用のメニューエリア    ********************/
	header #header_menu{
		display: none;
	}
	header {
		width: calc(100% - 30px);
		padding: 15px;
		font-size: 18px;
		background: none;
	}
	
	/* スマホ用のメニューエリアを表示 */
	#sp_menu_area {
		display: block;
		height: 0;
		position: -webkit-sticky;
		position: sticky;
		z-index: 999;
		text-align: right;
		top: 15px;
	}
	
	/* メニューアイコン */
	#sp_menu_area #sp_menu_open_icon {
		display: block;
		position: fixed;
		top: 2%;
		right: 5%;
		z-index: 11;
	}
	
	/* メニュー */
	#sp_menu_area #sp_menu {
		display: none;
		width: 100%;
		text-align: center;
		background-color: #A80C36;
		-webkit-transition: all 0.5s;
		-moz-transition: all 0.5s;
		transition: all 0.5s;
	}
	
	#sp_menu_area #sp_menu #sp_menu_close_icon {
		display: block;
		position: absolute;
		top: 3%;
		right: -1%;
		font-size: 44px;
	}
	
	#sp_menu_area #sp_menu #sp_menu_logo_area {
		padding-top: 60px;
		padding-bottom: 5%;
		text-align: center;
	}
	
	#sp_menu_area #sp_menu #sp_menu_logo_area img {
		width: 50%;
		margin: 0 auto;
	}
	
	#sp_menu_area #sp_menu .sp_menu_list {
		padding-top: 4%;
		padding-bottom: 4%;
	}
	
	#sp_menu_area #sp_menu .sp_menu_list a {
		color: white;
		font-size: 18px;
		text-decoration: none;
	}
	
	#sp_menu_area #sp_menu #sp_menu_bottom {
		padding-top: 4%;
		padding-bottom: 60px;
	}
	#sp_menu_area #sp_menu #sp_menu_bottom a{
		color: #fff;
		text-decoration: none;
		border: 1px solid #fff;
		padding: 10px 22px 10px;
	}
	#sp_menu_area #sp_menu #sp_menu_bottom a img{
		margin: 0 5px 0 0;
	}
	
	
	/****************************************************************************/
	/*							メインコンテンツのブロック						*/
	/****************************************************************************/
	main{
		padding: 15px;
		min-height: calc(100vh - 130px);
	}
	
	
	/****************************************************************************/
	/*									TOP画面									*/
	/****************************************************************************/
	
	/********************    共通    ********************/
	/* 画像の上の文字サイズを小さくする */
	#index #online_shop-banner p.name_e,
	#index #top_sweets_menu #top_sweets_menu_contents .top_sweets_menu_img p.name_e,
	#index #top_pick_up #top_pick_up_contents .top_pick_up_img p.name_e,
	#index #top_gallary #top_gallary_contents .top_gallary_img p.name_e {
		font-size: 15px;
		line-height: 20px;
		width: 100%;
	}
	
	/* 画像にマウスを乗せても何もしない */
	#index #online_shop-banner .top_banner_img:hover,
	#index #top_sweets_menu #top_sweets_menu_contents .top_sweets_menu_img:hover,
	#index #top_pick_up #top_pick_up_contents .top_pick_up_img:hover,
	#index #top_gallary #top_gallary_contents .top_gallary_img:hover {
		background-color: transparent;
		opacity: 1;
	}

	#index #online_shop-banner .top_banner_img:hover img.pc_image,
	#index #top_sweets_menu #top_sweets_menu_contents .top_sweets_menu_img:hover img.pc_image,
	#index #top_pick_up #top_pick_up_contents .top_pick_up_img:hover img.pc_image,
	#index #top_gallary #top_gallary_contents .top_gallary_img:hover img.pc_image {
		display: none;
	}
	
	#index #online_shop-banner .top_banner_img:hover p.name_e,
	#index #top_sweets_menu #top_sweets_menu_contents .top_sweets_menu_img:hover p.name_e,
	#index #top_pick_up #top_pick_up_contents .top_pick_up_img:hover p.name_e,
	#index #top_gallary #top_gallary_contents .top_gallary_img:hover p.name_e {
		display: inline;
	}
	
	#index #online_shop-banner .top_banner_img:hover p.name_j,
	#index #top_sweets_menu #top_sweets_menu_contents .top_sweets_menu_img:hover p.name_j,
	#index #top_pick_up #top_pick_up_contents .top_pick_up_img:hover p.name_j,
	#index #top_gallary #top_gallary_contents .top_gallary_img:hover p.name_j {
		display: none;
	}
	
	
	/********************    動画    ********************/
	/* 動画を非表示 */
	#index #video_area {
		display: none;
	}
	
	
	/********************    ヘッダー    ********************/
	/* PC用のヘッダーメニューを非表示 */
	#index #top_header {
		display: none;
	}
	
	
	/********************    スライド画像    ********************/
	/* 大枠 */
	#index #slide_image_area {
		display: block;
		width: 100%;
	}
	
	/* スライド画像 */
	#index #slide_image_area .slide_image {
		z-index:10;	/* 表示を後ろに移動 */
		width: 100%;
		top: 0;
	}
	
	#index #slide_image_area .slide_image .base_image {
		width: 100%;
		height: 80vh;
		object-fit: cover;
	}
	
	/* スライド画像の上にロゴを重ねる */
	#index #slide_image_area .pile_logo {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		width: 80%;
		z-index:11;
	}
	
	
	/************************************************************/
	/* 時計アイコン */
	#index #tokei_icon_area {
		margin: 21% auto 0 auto;
		width: 24%;
	}
	
	/* キャッチコピー */
	#index #catch_copy {
		margin: 3% 0 0 0;
		line-height: 40px;
		font-size: 15px;
	}
	
	
	/********************    Sweets menu    ********************/
	/* 中枠 */
	#index #top_sweets_menu {
		margin: 20% 1% 0 1%;
	}
	
	#index #top_sweets_menu #top_sweets_menu_contents {
		margin-top: 7%;
	}
	
	#index #top_sweets_menu #top_sweets_menu_contents .sweets_menu_top {
		width: 100%;
		margin: 0 0 3% 0;
	}
	
	#index #top_sweets_menu #top_sweets_menu_contents .sweets_menu_middle {
		width: 100%;
		margin: 0;
	}
	
	#index #top_sweets_menu #top_sweets_menu_contents .sweets_menu_middle a {
		display: block;
		width: 48.5%;
		margin-bottom: 3%;
	}
	
	#index #top_sweets_menu #top_sweets_menu_contents .sweets_menu_bottom {
		width: 100%;
		margin: 0;
	}
	
	
	/********************    Pick Up    ********************/
	/* 中枠 */
	#index #top_pick_up {
		margin: 24% 0 0;
	}
	
	#index #top_pick_up #top_pick_up_contents {
		display: block;
		margin: 7% auto 0 auto;
		width: 100%;
	}
	
	#index #top_pick_up #top_pick_up_contents a {
		width: 100%;
		margin-bottom: 3%;
	}
	
	/********************    Onsline shop banner    ********************/
	#index #online_shop-banner{
		margin: 25% 1% 0 1%;
	}
	/********************    Information    ********************/
	/* 中枠 */
	#index #top_info {
		margin: 25% 1% 0 1%;
	}
	
	#index #top_info #top_info_contents {
		width: 100%;
		grid-template-columns: repeat(3, 1fr);
	}
	
	#index #top_info #top_info_contents a {
		/*width: 32%;*/
	}
	
	#index #top_info a#info_link {
		margin-top: 9%;
		padding: 3% 0;
		font-size: 13px;
		width: 65%;
	}
	
	#index #top_info #top_info_contents .top_info_img {
	    /* width: 45%;
	    margin: 1%; */
	    font-size: 13px;
	    line-height: 1.5em;
    }
	
	
	/********************    Gallary    ********************/
	/* 中枠 */
	#index #top_gallary {
		margin: 25% 1% 0 1%;
	}
	
	#index #top_gallary #top_gallary_contents {
		width: 100%;
		margin: 8% 0 0 0;
	}G520
	
	
	#index #top_gallary #top_gallary_contents a {
		width: 32%;
	}
	
	#index #top_gallary a#gallary_link {
		margin-top: 9%;
		padding: 3% 0;
		font-size: 13px;
		width: 65%;
	}
	
	
	/********************    About    ********************/
	/* 中枠 */
	#index #top_about {
		margin: 24% 1% 0 1%;
	}
	
	#index #top_about #top_about_contents {
		position: static;
		height: auto;
		margin-top: 8%;
	}
	
	/* 店舗情報 */
	#index #top_about #top_about_contents #shop_info_area1 {
		width: 100%;
		position: static;
	}
	
	#index #top_about #top_about_contents #shop_info_area1 #shop_info_area2 {
		display: block;
	}
	
	#index #top_about #top_about_contents #shop_info_area1 #shop_info_area2 #shop_info_area3 {
		margin: 10% auto 0 auto;
		text-align: center;
		width: 100%;
	}
	
	#index #top_about #top_about_contents #shop_info_area1 #shop_info_area2 #shop_info_area3 span {
		display: block;
		font-size: 20px;
	}
	
	#index #top_about #top_about_contents #shop_info_area1 #shop_info_area2 #shop_info_area3 #address {
		display: inline-block;
		text-align: left;
		font-size: 14px;
		line-height: 180%;
	}
	
	#index #top_about #top_about_contents #shop_info_area1 #shop_info_area2 #shop_info_area3 a#about_link {
		margin-top: 8%;
		padding: 3% 0;
		font-size: 13px;
		width: 65%;
	}
	
	/* カレンダー */
	#index #top_about #top_about_contents #shop_info_area1 #shop_info_area2 #calendar {
		margin-top: 12%;
		width: 100%;
	}
	
	/* ページトップアイコン */
	#index #top_about #top_about_contents img.page_top_icon {
		position: static;
		margin: 12% auto 0 auto;
		width: 12%;
	}
	
	/* ツリーアイコン */
	#index #top_about #top_about_contents img#top_icon_tree {
		position: relative;
		margin: 0 auto 2% auto;
		width: 60%;
		bottom: -50px;
	}
	
	/*駐車場情報*/
	#parking_introduction_area {
		margin: 60px auto 0 auto;
		line-height: 40px;
		font-size: 16px;
		width: 100%;
	}

	#parking_introduction_area #parking_title {
		font-weight: bold;
		margin-bottom: 10px;
	}

	#parking_introduction_area .parking_text {
		font-size: 13px;
		line-height: 1.8em;
		margin-bottom: 30px;
	}
	
	#parking_introduction_area img {
    	width: 100%;
	}

	
	
	
	
	/****************************************************************************/
	/*								メニュー画面								*/
	/****************************************************************************/
	
	/* 中枠 */
	#menu {
		margin: -6% 1% 0 1%;
		padding: 50px 0;
	}
	
	#menu h1 {
		font-size: 18px;
	}
	
	#menu #sweets_menu_contents {
		margin-top: 7%;
	}
	
	#menu #sweets_menu_contents .sweets_menu_top {
		width: 100%;
		margin: 0 0 3% 0;
	}
	
	#menu #sweets_menu_contents .sweets_menu_middle {
		width: 100%;
		margin: 0;
	}
	
	#menu #sweets_menu_contents .sweets_menu_middle a {
		display: block;
		width: 48.5%;
		margin-bottom: 3%;
	}
	
	#menu #sweets_menu_contents .sweets_menu_bottom {
		width: 100%;
		margin: 0;
	}
	
	/* 画像の上の文字サイズを小さくする */
	#menu #sweets_menu_contents .sweets_menu_img p.name_e {
		font-size: 15px;
		line-height: 20px;
		width: 100%;
	}
	
	/* 画像にマウスを乗せても何もしない */
	#menu #sweets_menu_contents .sweets_menu_img:hover {
		background-color: transparent;
		opacity: 1;
	}

	#menu #sweets_menu_contents .sweets_menu_img:hover img.pc_image {
		display: none;
	}
	
	#menu #sweets_menu_contents .sweets_menu_img:hover p.name_e {
		display: inline;
	}
	
	#menu #sweets_menu_contents .sweets_menu_img:hover p.name_j {
		display: none;
	}
	
	
	
	
	/****************************************************************************/
	/*								商品一覧画面								*/
	/****************************************************************************/
	
	/* 1列の画像を等間隔に並べる */
	#menu ul.item_list {
		width: 100%;
		margin-top: 8%;
	}
	
	#menu ul.item_list li {
		width: 44%;
		margin: 0 3% 8% 3%;
	}
	
	/* 商品名 */
	#menu ul.item_list li a .item_name{
		margin-top: 10%;
		font-size: 14px;
	}
	
	/* 商品区分 */
	#menu ul.item_list li a .item_kbn_area {
		margin-top: 7%;
	}
	
	#menu ul.item_list li a .item_kbn_area span.item_kbn_tentou,
	#menu ul.item_list li a .item_kbn_area span.item_kbn_delivery {
		width: 50%;
		padding: 2%;
		font-family: monospace;
		font-size: 11px;
		display: block;
		margin: 0 auto;
	}
	
	#menu ul.item_list li a .item_kbn_area span:nth-child(2) {
		margin: 5% auto 0 auto;
	}
	
	
	
	
	/****************************************************************************/
	/*								商品ページ									*/
	/****************************************************************************/
	
	/* 大枠 */
	.item_page {
		margin: -6% auto 0 auto;
		padding: 50px 0 0;
		width: 90%;
	}
	
	.item_page h1 {
		font-size: 18px;
	}
	
	/* メイン画像 */
	.item_page ul.slider {
		width: 100%;
		margin: 10% auto 0 auto;
	}
	
	.item_page ul.slider .slick-list .slick-track li {
		margin: 0 !important;
	}
	
	/* サムネ画像 */
	.item_page .thmb-wrapper {
		width: 90%;
		margin: 5% auto 10% auto;
	}
	
	/* 画像が1枚のみの場合 */
	.item_page .image_only_one {
		width: 100%;
		margin: 10% 0;
	}
	
	/* 商品名 */
	.item_page .item_name {
		font-size: 20px;
	}
	
	/* 商品区分 */
	.item_page .item_kbn {
		border-radius: 30px;
		width: 20%;
		margin: 6% auto 0 auto;
		font-size: 12px;
	}
	
	/* 商品説明 */
	.item_page .item_explanation {
		margin-top: 10%;
		line-height: 25px;
		font-size: 14px;
		text-align: left
	}
	
	/* PC用ラインマーク */
	.item_page .pc_line_icon {
		display: none;
	}
	
	/* カートエリア */
	.item_page .cart_area {
		float: none;
		width: 100%;
	}
	
	.item_page .cart_area table {
		margin: 7% 0 0 0;
	}
	
	.item_page .cart_area table td {
		padding: 5px 8px;
		font-size: 16px;
	}
	
	/* 個数のセレクトボックス */
	.item_page .cart_area table td.num_td {
		width: 35%;
	}
	
	.item_page .cart_area table td .select_ninacart_tag::before {
		top: 40%;
		right: 6%;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-top: 5px solid #A27133;
	}
	
	.item_page .cart_area table td .select_ninacart_tag select {
		width: auto;
		height: 28px;
	}
	
	/* 「カートに入れる」ボタン */
	.item_page .cart_area span.-btntxt {
		width: 70%;
		margin: 8% auto 0 auto;
		padding: 4% 0;
		font-size: 13px;
	}
	
	
	/* SP用ラインマーク */
	.item_page .sp_line_icon,
	.item_page .line_icon {
		display: block;
		width: 45%;
		margin: 20% auto 0 auto;
	}
	
	.item_page .sp_line_icon img,
	.item_page .line_icon img {
		width: 100%;
	}
	
	
	/* その他商品情報エリア */
	.item_page .etc_area {
		float: none;
		width: 100%;
		margin: 17% 0 13% 0;
		line-height: 25px;
		font-size: 14px;
	}
	
	/* ニナカート発送＆店頭予約ページリンク */
	.item_page .ninacart_page_link_area {
		margin: 20% 0;
	}
	
	.item_page .ninacart_page_link_area .ninacart_tentou_page_link_btn,
	.item_page .ninacart_page_link_area .ninacart_delivery_page_link_btn {
		display: block;
		width: 90%;
		max-width: 250px;
		margin: 0 auto;
	}
	
	.item_page .ninacart_page_link_area a:nth-child(2) {
		margin: 5% auto 0 auto;
	}
	
	
	
	/****************************************************************************/
	/*						イラストデコレーション画面							*/
	/****************************************************************************/
	
	/* 大枠 */
	#illustration_decoration {
		margin: -6% auto 0 auto;
		padding: 50px 0 0;
		width: 95%;
	}
	
	#illustration_decoration h1 {
		font-size: 18px;
	}
	
	#illustration_decoration #illustration_decoration_contents {
		margin-top: 10%;
	}
	
	#illustration_decoration #illustration_decoration_contents .illustration_decoration_comment1 {
		font-size: 17px;
	}
	
	#illustration_decoration #illustration_decoration_contents .illustration_decoration_comment2 {
		margin-top: 8%;
		font-size: 13px;
		font-weight: bold;
	}
	
	#illustration_decoration #illustration_decoration_contents .illustration_decoration_title {
		margin-top: 5%;
		font-size: 29px;
		font-weight: bold;
	}
	
	#illustration_decoration #illustration_decoration_contents .illustration_decoration_img {
		margin-top: 10%;
		width: 100%;
	}
	
	#illustration_decoration #illustration_decoration_contents .illustration_decoration_img img.second_img {
		margin-top: 3%;
	}
	
	#illustration_decoration #illustration_decoration_contents .illustration_decoration_comment3 {
		margin-top: 8%;
		font-size: 16px;
		line-height: 26px;
	}
	
	#illustration_decoration #illustration_decoration_contents .illustration_decoration_comment4 {
		width: 100%;
		margin: 6% 0 0 0;
		line-height: 23px;
		font-size: 13px;
	}
	
	#illustration_decoration #illustration_decoration_contents .illustration_decoration_comment5 {
		margin-top: 6%;
		font-size: 16px;
		line-height: 26px
	}
	
	#illustration_decoration #illustration_decoration_contents a.illustration_decoration_link {
		margin-top: 10%;
		padding: 4% 18%;
		font-size: 13px;
	}
	
	/* ラインマーク */
	#illustration_decoration #illustration_decoration_contents .line_icon {
		margin: 20% auto 20% auto;
		width: 40%;
	}
	
	#illustration_decoration #illustration_decoration_contents .line_icon img {
		width: 100%;
	}
	
	/* お問い合わせ先 */
	#illustration_decoration #illustration_decoration_contents #contact_info_area {
		margin-top: 11%;
	}
	
	#illustration_decoration #illustration_decoration_contents #contact_info_area #contact_info_title {
		font-size: 16px;
	}
	
	#illustration_decoration #illustration_decoration_contents #contact_info_area #phone {
		font-size: 21px;
		margin: 10% 0 0 0;
	}
	
	#illustration_decoration #illustration_decoration_contents #contact_info_area #phone .phone_icon {
		width: 6%;
		margin-right: 4%;
	}
	
	/* 営業時間 */
	#illustration_decoration #illustration_decoration_contents #contact_info_area #business_hours {
		margin: 5% 0 0 0;
		font-size: 13px;
	}
	
	/* ページトップアイコン */
	#illustration_decoration .page_top {
		margin-top: 15%;
	}
	
	
	
	
	/****************************************************************************/
	/*			Pick up 画面（一覧画面と商品詳細画面で同じcssを使用）			*/
	/****************************************************************************/

	/* 大枠 */
	#pickup {
		margin: -6% auto 0 auto;
		padding: 50px 0 0;
		width: 95%;
	}
	
	#pickup h1 {
		font-size: 18px;
	}
	
	#pickup #pickup_contents {
		margin-top: 10%;
	}
	
	#pickup #pickup_contents .pickup_comment1 {
		font-size: 17px;
	}
	
	#pickup #pickup_contents .pickup_comment2 {
		margin-top: 8%;
		font-size: 13px;
		font-weight: bold;
	}
	
	#pickup #pickup_contents .pickup_title {
		margin-top: 5%;
		font-size: 29px;
		font-weight: bold;
	}
	
	#pickup #pickup_contents .pickup_img {
		margin-top: 10%;
		width: 100%;
	}
	
	#pickup #pickup_contents .pickup_img img.second_img {
		margin-top: 3%;
	}
	
	#pickup #pickup_contents .pickup_comment3 {
		margin-top: 8%;
		font-size: 16px;
		line-height: 26px;
	}
	
	#pickup #pickup_contents .pickup_comment4 {
		width: 100%;
		margin: 6% 0 0 0;
		line-height: 23px;
		font-size: 13px;
	}
	
	#pickup #pickup_contents a.pickup_link {
		margin-top: 10%;
		padding: 4% 18%;
		font-size: 13px;
	}
	
	/* ラインマーク */
	#pickup #pickup_contents .line_icon {
		margin: 20% auto 20% auto;
		width: 40%;
	}
	
	#pickup #pickup_contents .line_icon img {
		width: 100%;
	}
	
	/* カートエリア */
	#pickup #pickup_contents .cart_area {
		float: none;
		width: 100%;
	}
	
	#pickup #pickup_contents .cart_area table {
		margin: 7% auto 0 auto;
	}
	
	#pickup #pickup_contents .cart_area table td {
		padding: 5px 8px;
		font-size: 16px;
	}
	
	/* 個数のセレクトボックス */
	#pickup #pickup_contents .cart_area table td.num_td {
		width: 48%;
	}
	
	#pickup #pickup_contents .cart_area table td .select_ninacart_tag::before {
		top: 40%;
		right: 6%;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-top: 5px solid #A27133;
	}
	
	#pickup #pickup_contents .cart_area table td .select_ninacart_tag select {
		width: auto;
		height: 28px;
	}
	
	/* 「カートに入れる」ボタン */
	#pickup #pickup_contents .cart_area span.-btntxt {
		width: 70%;
		margin: 8% auto 0 auto;
		padding: 4% 0;
		font-size: 13px;
	}
	
	
	/* スマホ用ラインマーク */
	#pickup #pickup_contents .sp_line_icon {
		display: block;
		margin: 20% 0 15% 0;
	}
	
	#pickup #pickup_contents .sp_line_icon img {
		width: 40%;
	}
	
	
	/* その他商品情報エリア */
	#pickup #pickup_contents .etc_area {
		float: none;
		width: 100%;
		line-height: 25px;
		font-size: 14px;
	}
	
	
	/* ページトップアイコン */
	#pickup .page_top {
		margin-top: 15%;
	}
	
	
	
	
	/****************************************************************************/
	/*			Gallary 画面（一覧画面と商品詳細画面で同じcssを使用）			*/
	/****************************************************************************/
	
	/* 大枠 */
	#gallary {
		margin: -6% auto 0 auto;
		padding: 50px 0 0;
		width: 95%;
	}
	
	#gallary h1 {
		font-size: 18px;
	}
	
	#gallary #gallary_contents {
		margin-top: 10%;
	}
	
	#gallary #gallary_contents .gallary_title {
		font-size: 20px;
		line-height: 32px;
		font-weight: bold;
	}
	
	#gallary #gallary_contents .gallary_img {
		margin-top: 8%;
		width: 100%;
	}
	
	#gallary #gallary_contents .gallary_comment {
		margin-top: 8%;
		width: 100%;
		line-height: 24px;
		font-size: 13px;
	}
	
	#gallary #gallary_contents a.gallary_link,
	#gallary #gallary_contents a.gallary_all_link {
		margin-top: 10%;
		padding: 4% 18%;
		font-size: 13px;
	}
	
	#gallary #gallary_contents a.gallary_all_link {
		margin-top: 8%;
	}
	
	/* ラインマーク */
	#gallary #gallary_contents .line_icon {
		margin: 20% auto 20% auto;
		width: 40%;
	}
	
	#gallary #gallary_contents .line_icon img {
		width: 100%;
	}
	
	
	/* 使用している商品はこちら */
	#gallary #gallary_contents .use_item_area {
		margin-top: 0;
	}
	
	#gallary #gallary_contents .use_item_area .use_item_title {
		font-size: 17px;
	}
	
	/* 1列の画像を等間隔に並べる */
	#gallary #gallary_contents .use_item_area ul.item_list {
		width: 100%;
		margin-top: 8%;
	}
	
	#gallary #gallary_contents .use_item_area ul.item_list li {
		width: 44%;
		margin: 0 3% 8% 3%;
	}
	
	/* 商品名 */
	#gallary #gallary_contents .use_item_area ul.item_list li a .item_name{
		margin-top: 10%;
		font-size: 14px;
	}
	
	/* 商品区分 */
	#gallary #gallary_contents .use_item_area ul.item_list li a .item_kbn {
		border-radius: 30px;
		width: 40%;
		margin: 7% auto 0 auto;
		padding: 2%;
		font-size: 11px;
	}
	
	
	/* ページトップアイコン */
	#gallary .page_top {
		margin-top: 15%;
	}
	
	/****************************************************************************/
	/*								お知らせ画面								*/
	/****************************************************************************/
	#info_main{
    	margin: -6% auto 0 auto;
		padding: 50px 0 0;
		width: 95%;
	}
	
	#info_main h1 {
		font-size: 18px;
	}
	
	#info_main #info_main_contents {
		width: 100%;
	    margin: 7% 0 0 0;
	    font-size: 13px;
	    line-height: 24px;
	}
	
	/****************************************************************************/
	/*								店舗情報画面								*/
	/****************************************************************************/
	
	/* 大枠 */
	#about {
		margin: -6% auto 0 auto;
		padding: 50px 0 0;
		width: 95%;
	}
	
	#about h1 {
		font-size: 18px;
	}
	
	#about #about_contents {
		margin-top: 10%;
	}
	
	/* お店紹介 */
	#about #about_contents #shop_large_img {
		width: 100%;
		margin: 0;
	}
	
	#about #about_contents #shop_large_img img {
		width: 100%;
	}
	
	#about #about_contents #shop_introduction {
		width: 100%;
		margin: 7% 0 0 0;
		font-size: 13px;
		line-height: 24px;
	}
	
	#about #about_contents #shop_small_image_area {
		width: 100%;
		margin: 6% 0 0 0;
		display: flex;
		justify-content: left;
		flex-wrap: wrap;
	}
	
	#about #about_contents #shop_small_image_area .shop_small_image {
		width: 46%;
		margin: 0 2% 4% 2%;
	}
	
	#about #about_contents #shop_small_image_area .shop_small_image img {
		width: 100%;
	}
	
	/* ラインマーク */
	#about #about_contents .line_icon {
		margin: 20% auto 20% auto;
		width: 40%;
	}
	
	#about #about_contents .line_icon img {
		width: 100%;
	}
	
	/* シェフ紹介 */
	#about #about_contents #chef_img {
		margin: 0 auto;
		width: 73%;
	}
	
	#about #about_contents #chef_introduction_area {
		width: 100%;
		margin: 9% 0 0 0;
	}
	
	#about #about_contents #chef_introduction_area #position {
		font-size: 14px;
	}
	
	#about #about_contents #chef_introduction_area #chef_name {
		margin-top: 3%;
		font-size: 20px;
	}
	
	#about #about_contents #chef_introduction_area .chef_introduction {
		margin-top: 9%;
		font-size: 13px;
		line-height: 24px;
	}
	
	/* 店舗情報 */
	#about #about_contents #shop_info_area {
		display: block;
		width: 100%;
		margin: 0;
	}
	
	#about #about_contents #shop_info_area #shop_info {
		margin-top: 0;
	}
	
	#about #about_contents #shop_info_area #shop_info span {
		font-size: 17px;
	}
	
	#about #about_contents #shop_info_area #address {
		margin-top: 6%;
		font-size: 12px;
		line-height: 24px;
	}
	
	#about #about_contents #shop_info_area #calendar {
		margin-top: 10%;
	}
	
	#about #about_contents #google_map {
		width: 100%;
		margin: 10% 0 0 0;
	}
	
	#about #about_contents #google_map iframe {
		width: 100%;
		height: 200px;
	}
	
	#about #about_contents a#google_map_link {
		margin: 8% 0 0 0;
		padding: 4% 18%;
		font-size: 13px;
	}
	
	/* ページトップアイコン */
	#about .page_top {
		margin-top: 11%;
	}
	
	
	
	
	/****************************************************************************/
	/*								お問い合わせ画面							*/
	/****************************************************************************/
	
	/* 大枠 */
	#contact {
		margin: -6% auto 0 auto;
		padding: 50px 0 0;
		width: 95%;
	}
	
	#contact h1 {
		font-size: 18px;
	}
	
	#contact #contact_contents {
		margin-top: 10%;
	}
	
	#contact #contact_contents #summary {
		font-size: 14px;
		line-height: 25px;
	}
	
	/* ラインマーク */
	#contact #contact_contents .line_icon {
		margin: 16% 0 22% 0;
	}
	
	#contact #contact_contents .line_icon img {
		width: 40%;
	}
	
	/* 問い合わせエリア */
	#contact #contact_contents #q_a_area {
		margin: 8% 0 0 0;
	}
	
	/* 個々の問い合わせのブロック */
	#contact #contact_contents #q_a_area .question_block {
		width: 100%;
		margin: 0 0 8% 0;
	}
	
	/* 問い合わせ */
	#contact #contact_contents #q_a_area .question_block label {
		margin-bottom: 0;
		padding-bottom: 2%;
		font-size: 13px;
		line-height: 25px;
		font-weight: bold;
		border-bottom: solid 1px;
	}
	
	#contact #contact_contents #q_a_area .question_block label::after {
		content: '\025bc';
		padding: 0;
		top: auto;
		right: 2%;
		bottom: 10%;
		font-size: 13px;
	}
	
	/* 回答 */
	#contact #contact_contents #q_a_area .answer {
		font-size: 13px;
		line-height: 25px;
		margin: 2% 0 13% 0;
	}
	
	/* お問い合わせ先 */
	#contact #contact_contents #contact_info_area {
		margin-top: 11%;
	}
	
	#contact #contact_contents #contact_info_area #phone {
		font-size: 21px;
	}
	
	#contact #contact_contents #contact_info_area #phone .phone_icon {
		width: 6%;
		margin-right: 4%;
	}
	
	/* 営業時間 */
	#contact #contact_contents #contact_info_area #business_hours {
		margin: 5% 0 0 0;
		font-size: 13px;
	}
	
	/* ページトップアイコン */
	#contact .page_top {
		margin-top: 15%;
	}
	
	
	
	
	/****************************************************************************/
	/*									求人画面								*/
	/****************************************************************************/
	
	/* 大枠 */
	#recruit {
		margin: -6% auto 0 auto;
		padding: 50px 0 0;
		width: 95%;
	}
	
	#recruit h1 {
		font-size: 18px;
	}
	
	#recruit #recruit_contents {
		margin-top: 10%;
	}
	
	#recruit #recruit_contents #recruit_comment1 {
		width: 100%;
		margin: 10% 0 0 0;
		font-size: 13px;
		line-height: 25px;
	}
	
	/* ラインマーク */
	#recruit #recruit_contents .line_icon {
		margin: 16% 0 22% 0;
	}
	
	#recruit #recruit_contents .line_icon img {
		width: 40%;
	}
	
	#recruit #recruit_contents #recruit_comment2 {
		width: 100%;
		margin: 0 0 0 0;
		/*height: 300px;*/
		font-size: 13px;
		line-height: 25px;
	}
	
	
	
	
	/****************************************************************************/
	/*							フッターブロック								*/
	/****************************************************************************/
	
	/* 大枠 */
	footer {
		padding: 4% 0 4% 0;
		background-image: url("../image/bg.jpg");
	}
	
	footer #footer_logo img {
		width: 30%;
		margin: 0 auto;
	}
	
	footer #copyright {
		font-size: 10px;
		margin-top: 4%;
	}
}


