@charset "UTF-8";

/* 特集ページ　－　おけさ柿 (202509_02.html) */

/*****************************
全体
*****************************/
#special_202509_02 {
	font-size: 1.125rem;
	line-height: 1.5;
	letter-spacing: 1.5px;
	background-color: #fff0d3;
}
@media screen and (max-width:767px) {
	#special_202504_02 {
		font-size: 1rem;
	}
}

/* 背景画像 */
#special_202509_02 .wrapper {
	max-width: 1260px;
	background-color: #ffdfa1;
	box-sizing: border-box;
	overflow: hidden;
	padding: 0 40px;
}
@media screen and (max-width:767px) {
	#special_202509_02 .wrapper {
		padding: 0 20px;
	}
}

/* 文字　赤 */
#special_202509_02 .color_red {
	color: #d62b1f;
}

/* 文字　オレンジ */
.color_orange {
	color: #e49125;
	font-weight: bold;
}

/* 文字協調 */
.font_b {
	font-weight: bold;
}

/* sp時には左右の余白なし */
@media screen and (max-width:767px) {
	.sp_wrapper {
		padding: 0;
	}
}

.flex {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width:767px) {
	.flex {
		flex-direction: column;
	}
	.flex_items {
		width: 100%;
		box-sizing: border-box;
	}
}

.block {
	margin-bottom: 100px;
}
@media screen and (max-width:767px) {
	.block {
		margin-bottom: 60px;
		padding: 0;
	}
}

/* flex時の文字ブロック縦中央配置 */
.flex_nowrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
}

/* 本文　大見出し */
.h2_title {
	position: relative;
	display: inline-block;
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	font-size: 2.5rem;
	color: #2d9377;
	margin-bottom: 40px;
	text-align: center;	
	background-color: #fff;
	border-radius: 10px;
	padding: 7px 100px 3px 100px;
}
@media screen and (max-width:1100px) {
	.h2_title {
		font-size: 2rem;
	}
}
@media screen and (max-width:767px) {
	.h2_title {
		font-size: 2rem;
		margin-bottom: 20px;
		padding: 7px 80px 3px 80px;
	}
}
@media screen and (max-width:500px) {
	.h2_title {
		font-size: 1.5rem;
	}
}

/* 大見出しに柿イラスト */
.h2_title::before {
	position: absolute;
	display: inline-block;
	content: "";
	width: 80px;
	height: 64px;
	top: 3px;
	left: 10px;
	background-image: url(../img/special/special_02/illust_persimmon.png);
	background-repeat: no-repeat;
	background-size: contain;
}
.h2_title::after {
	position: absolute;
	display: inline-block;
	content: "";
	width: 80px;
	height: 64px;
	top: 3px;
	right: 10px;
	background-image: url(../img/special/special_02/illust_persimmon.png);
	background-repeat: no-repeat;
	background-size: contain;
}
@media screen and (max-width:1100px) {
	.h2_title::before,
	.h2_title::after {
		width: 64px;
		height: 51px;
	}
}

/* 本文 */
.section_text {
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	font-size: 1.45rem;
	text-align: left;
}
@media screen and (max-width:767px) {
	.section_text {
		font-size: 1.25rem;
		margin-bottom: 20px;
	}	
}
@media screen and (max-width:500px) {
	.section_text {
		font-size: 1.125rem;
		margin-bottom: 15px;
	}	
}

/* 本文 */
p {
	margin-bottom: 20px;
}
.mb0 {
	margin-bottom: 0;
}
.mb40 {
	margin-bottom: 40px;
}

/* PCとSP切り替え */
/* 500px以上で改行あり（SP時に改行なし） */

.hidden_500over {
	display: none;
}
@media screen and (max-width:500px) {
	.hidden_500over {
		display: block;
	}
}

/* 1200px以下で改行あり（SP時に改行なし） */
.hidden_sp_1200 {
	display: none;
}
@media screen and (max-width:1200px) {
	.hidden_sp_1200 {
		display: block;
	}
}
@media screen and (max-width:767px) {
	.hidden_sp_1200 {
		display: none;
	}
}

/* 950px以下で改行あり（SP時に改行なし、400以下で改行あり） */
.hidden_sp_950 {
	display: none;
}
@media screen and (max-width:950px) {
	.hidden_sp_950 {
		display: block;
	}
}
@media screen and (max-width:767px) {
	.hidden_sp_950 {
		display: none;
	}
}
@media screen and (max-width:400px) {
	.hidden_sp_950 {
		display: block;
	}
}

/* 800px以下で改行あり */
.hidden_800 {
	display: none;
}
@media screen and (max-width:800px) {
	.hidden_800 {
		display: block;
	}
}

/* 650px以下で改行あり */
.hidden_650 {
	display: none;
}
@media screen and (max-width:650px) {
	.hidden_650 {
		display: block;
	}
}

/* 600px以下で改行あり */
.hidden_600 {
	display: none;
}
@media screen and (max-width:600px) {
	.hidden_600 {
		display: block;
	}
}

/* 500px以下で改行あり */
.hidden_500 {
	display: none;
}
@media screen and (max-width:500px) {
	.hidden_500 {
		display: block;
	}
}

/* 550px以下で改行あり */
.hidden_550 {
	display: none;
}
@media screen and (max-width:550px) {
	.hidden_550 {
		display: block;
	}
}

/* 550px以下で改行なし */
.hidden_sp_550 {
	display: block;
}
@media screen and (max-width:550px) {
	.hidden_sp_550 {
		display: none;
	}
}

/* 450px以下で改行なし */
.hidden_sp_450 {
	display: none;
}
@media screen and (max-width:450px) {
	.hidden_sp_450 {
		display: block;
	}
}

/* 区切り線　栗 */
.line_chestnut {
	margin-bottom: 80px;
}


/*****************************
メインビジュアル　トップ画
*****************************/
#header {
	max-width: 1260px;
	width: 100%;
	line-height: 1;
	padding: 0;
	margin: 0 auto;
}
#header .header_img {
	vertical-align: bottom;
}

/*****************************
説明ブロック #presentation
*****************************/
.presentation {
	padding-top: 60px;
	text-align: center;
}
@media screen and (max-width:767px) {
	.presentation {
		padding-top: 40px;
	}
}

/* 写真の角丸　１カラム */
.presentation .border_radius img {
	display: block;
	margin: 0 auto;
	border-radius: 30px;
}

/* 画像の影 */
.presentation .shadow {
	box-shadow: 10px 10px 20px rgb(158, 65, 65);
}

/******************************************************
ブロック１：新潟県産のおけさ柿 .block_01
*******************************************************/
.presentation .block_01 {
	margin-bottom: 120px;
}
.presentation .block_01 .section_text p:last-child {
	margin-bottom: 0;
}
.presentation .block_01 .flex_01 .flex_items {
	width: 50%;
}
@media screen and (max-width:767px) {
	.presentation .block_01 {
		margin-bottom: 80px;
	}
	.presentation .block_01 .flex_01 .flex_items.left,
	.presentation .block_01 .flex_01 .flex_items.right {
		width: 100%;
		margin-bottom: 10px;
	}
}
@media screen and (max-width:650px) {
	.presentation .block_01 .h2_title::before,
	.presentation .block_01 .h2_title::after {
		top: 19%;
	}
}
@media screen and (max-width:500px) {
	.presentation .block_01 {
		margin-bottom: 60px;
	}
}

/* 吹き出し */
.bubble {
	position: absolute;
	top: 20px;
	left: 100px;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.2;
	border: 3px solid #2d9377;
	border-radius: 40px;
	background-color: #fff;
	padding: 12px 20px 10px 20px;
}
.bubble::after {
	position: absolute;
    display: block;
    bottom: -14px;
    left: 45%;
    width: 20px;
    height: 20px;
    content: "";
    border-bottom: 3px solid #2d9377;
    border-left: 3px solid #2d9377;
    transform: rotate(-45deg);
    background-color: #fff;
}
.presentation .block_01 .bubble.shadow {
	box-shadow: 3px 3px 3px #707070;
}
@media screen and (max-width:1000px) {
	.presentation .block_01 .bubble {
		font-size: 1.3rem;
		left: 40px;
	}
}
@media screen and (max-width:800px) {
	.presentation .block_01 .bubble {
		left: 20px;
	}
}
@media screen and (max-width:767px) {
	.presentation .block_01 .bubble {
		top: auto;
		bottom: 20px;
		left: 24%;
	}
	.bubble::after {
		top: -14px;
		bottom: auto;
		border-bottom: none;
		border-left: none;
		border-top: 3px solid #2d9377;
		border-right: 3px solid #2d9377;
		transform: rotate(-45deg);
	}
}
@media screen and (max-width:600px) {
	.presentation .block_01 .bubble {
		left: 15%;
	}
}
@media screen and (max-width:500px) {
	.presentation .block_01 .bubble {
		left: 8%;
	}
}

/* 写真の丸ぬき */
.presentation .block_01 .circle_img {
	position: relative;
}
.presentation .shadow {
	box-shadow: 0 0 8px rgb(109, 109, 109);
}
.presentation .block_01 .flex_01 .circle_img .img_01 {
	width: 630px;
	height: 630px;
	border-radius: 50%;
	background-image: url(../img/special/special_02/persimmon_images_01.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin-left: -100px;
}
@media screen and (max-width:1200px) {
	.presentation .block_01 .flex_01 .circle_img .img_01 {
		width: 530px;
		height: 530px;
	}
}
@media screen and (max-width:1000px) {
	.presentation .block_01 .flex_01 .circle_img .img_01 {
		width: 450px;
		height: 450px;
	}
}
@media screen and (max-width:850px) {
	.presentation .block_01 .flex_01 .circle_img .img_01 {
		width: 400px;
		height: 400px;
	}
}
@media screen and (max-width:767px) {
	.presentation .block_01 .flex_01 {
		margin-top: 20px;
	}
	.presentation .block_01 .flex_01 .circle_img .img_01 {
		margin: 0 auto 40px auto;
	}
}
@media screen and (max-width:600px) {
	.presentation .block_01 .flex_01 .circle_img .img_01 {
		width: 300px;
		height: 300px;
	}
}


/*****************************************
ブロック２：八珍柿の由来 .block_02
*****************************************/
/* 見出しに柿イラストなし */
.h2_title.no_illust::before,
.h2_title.no_illust::after {
	display: none;
}
.presentation .block_02 {	
	position: relative;
	width: 80%;
	padding: 60px 40px 35px 40px;
	margin: 0 auto 120px auto;
	border: 2px dotted #ffaa00;
	background-color: #fff;
}
.presentation .block_02 .h2_title {
	position: absolute;
	display: inline-block;
	top: -40px;
	left: 60px;
	border: 2px solid #ffaa00;
	padding: 22px 15px 3px 15px;
	border-radius: 20px;
	font-size: 2rem;
	color: #c55f00;
}
.presentation .block_02 .flex .flex_items {
	width: 50%;
}
.presentation .block_02 .flex .flex_items.right.img_02 {
	padding-left: 40px;
}
.presentation .block_02 .flex .flex_items.right img {
	border-radius: 100px;
}
.presentation .block_02 .section_text p:last-child {
	margin-bottom: 0;
}
ruby rt {
	padding-bottom: 1px;
}

@media screen and (max-width:1100px) {
	.presentation .block_02 {
		padding-top: 100px;
	}
}
@media screen and (max-width:900px) {
	.presentation .block_02 .flex .flex_items.right.img_02 {
		padding-left: 20px;
	}
}
@media screen and (max-width:767px) {
	.presentation .block_02 .flex .flex_items.left,
	.presentation .block_02 .flex .flex_items.right {
		width: 100%;
	}
	.presentation .block_02 .h2_title {
		font-size: 1.75rem;
	}
	.presentation .block_02 .flex .flex_items.right.img_02 {
		padding-left: 0;
	}
}
@media screen and (max-width:550px) {
	.presentation .block_02 {
		width: 100%;
		padding: 60px 20px 20px 20px;
		box-sizing: border-box;
		margin-bottom: 80px;
	}
	.presentation .block_02 .h2_title {
		left: 20px;
		font-size: 1.5rem;
		padding: 18px 15px 3px 15px;
	}
}


/*****************************************
ブロック３：一つひとつ、手選別、手詰め  .block_03
*****************************************/
.presentation .block_03 {
	margin-bottom: 20px;
}
.presentation .block_03 .h2_title {
	margin-bottom: 40px;
}
.presentation .block_03 .flex .flex_items {
	width: 50%;
}
.presentation .block_03 .flex .flex_items.left img {
	border-radius: 20px;
}
.presentation .block_03 .flex .flex_items.right {
	padding-left: 40px;
}
.presentation .block_03 .section_text p:last-child {
	margin-bottom: 0;
}
@media screen and (max-width:800px) {
	.presentation .block_03 .h2_title::before,
	.presentation .block_03 .h2_title::after {
		top: 28%;
	}
}
@media screen and (max-width:767px) {
	.presentation .block_03 .flex .flex_items {
		width: 100%;
		margin-bottom: 20px;
	}
	.presentation .block_03 .flex .flex_items.right {
		padding-left: 0;
	}
}


/********************************
オーダーボックス　1カラム　商品概要
********************************/
.order_box {
	text-align: center;
}
.order_box .order_box_style {
	margin-bottom: 100px;
	margin-top: -40px;
	padding-top: 160px;
}
@media screen and (max-width:767px) {
	.order_box .order_box_style {
		padding: 140px 40px 0 40px;
	}
}
@media screen and (max-width:500px) {
	.order_box .order_box_style {
		padding: 140px 20px 0 20px;
	}
}

/* 背景　波 */
.bg_wavy_02 {
    max-width: 1260px;
    margin: 0 auto;
    background-image: url(../img/special/special_02/wavy_04.png);
    background-repeat: no-repeat;
    background-position: center top;
}


/* 誘導キャッチ */
.order_box .order_box_style .induction {
	position: relative;
	display: inline-block;
	margin: 0 auto;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 10px 20px 10px 100px;
}
.order_box .order_box_style .induction_image {
	position: absolute;
	display: block;
	top: -10px;
	left: -30px;
	width: 130px;
	height: auto;
}
@media screen and (max-width:767px) {
	.order_box .order_box_style .induction {
		font-size: 1.25rem;
	}
}
@media screen and (max-width:600px) {
	.order_box .order_box_style .induction_image {
		top: 0px;
		left: -40px;
	}	
}
@media screen and (max-width:500px) {
	.order_box .order_box_style .induction {
		font-size: 1.125rem;
	}
	.order_box .order_box_style .induction_image {
		top: 10px;
		left: -30px;
	}	
}


/***************************************
オーダーボックス　商品名・規格名・商品説明
***************************************/
.order_box .flex {
	display: flex;
	justify-content: space-between;
	max-width: 1060px;
	padding: 50px;
	margin: 40px auto 0 auto;
	background-color: #dcf1ea;
	background-color: #fff;
	box-sizing: border-box;
	border: 2px solid #fb590c;
	box-shadow: 10px 10px 10px #f1a84e;
}
.order_box .flex_items {
	position: relative;
	width: 50%;
	text-align: center;
}
.order_box .flex_items .packages {
	position: relative;
	margin-top: 20px;
}
.order_box .flex_items.right {
	padding-left: 40px;
	margin-bottom: 0;
	text-align: left;
}
@media screen and (max-width:1140px) {
	.order_box .flex {
		margin: 40px 40px 0 40px;
	}
}
@media screen and (max-width:900px) {
	.order_box .flex {
		padding: 40px 20px;
	}
	.order_box .img_box {
		margin-bottom: 20px;
	}
	.order_box .flex_items .packages {
		position: absolute;
		bottom: -120px;
		left: 0;
		width: 40%;
	}
}
@media screen and (max-width:767px) {
	.order_box .flex {
		margin: 40px 0 0 0;
	}
	.order_box .flex_items {
		width: 100%;
	}	
	.order_box {
		padding: 0;
	}
	.order_box .flex_items .packages {
		width: 40%;
		bottom: -100px;
	}
}
@media screen and (max-width:500px) {
	.order_box {
		margin: 0;
		padding: 30px 0;
	}
	.order_box .flex_items .packages {
		width: 60%;
		bottom: -120px;
	}
}

/* キャッチ */
.order_box .flex_items .catchphrase {
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	font-size: 1.5rem;
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 1.4;
	color: #2d9377;
	padding: 0 0 20px 0;
}

@media screen and (max-width: 900px) {
	.order_box .flex {
		flex-direction: column;
	}
	.order_box .flex_items {
		width: 100%;
	}
	.order_box .flex_items .goods_img {
		width: 80%;
	}
	.order_box .flex_items.right {
		padding-left: 0;
	}
	.order_box .flex_items .catchphrase {
		font-size: 1.25rem;
	}
}
@media screen and (max-width: 767px) {
	.order_box .flex_items .catchphrase {
		font-size: 1.125rem;
	}
}
@media screen and (max-width: 500px) {
	.order_box .flex_items .goods_img {
		width: 100%;
	}
}

/* 商品説明 */
.order_box .flex_items .explanation {
	font-size: 1.125rem;
	letter-spacing: 1.5px;
	margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
	.order_box .flex_items .explanation {
		font-size: 1.0rem;
		letter-spacing: 1.3px;
	}
}

/* メーカー名 */
.order_box .flex_items .maker_name {
	font-size: 0.875rem;
	font-weight: bold;
	margin-top: 25px;
}

/* 商品名 */
.order_box .flex_items .goods_name {
	font-size: 1.125rem;
	font-weight: bold;
	letter-spacing: 1px;
	border-top: 1px dotted #0B1F32;
	border-bottom: 1px dotted #0B1F32;
	padding: 12px 0;
	margin: 5px 0;
}

/* 規格名 */
.order_box .flex_items .quantity {
	font-size: 0.875rem;
	font-weight: bold;
	margin-bottom: 20px;
}

/* SALEマーク */
.order_box .flex_items .sale_label {
	display: block;
	width: 34px;
	color: #fff;
	background-color: #ce2524;
	font-size: 0.875rem;
	font-weight: 700;
	padding: 5px 12px 3px 10px;
	margin-bottom: 10px;
}

/* 価格ラベル */
.order_box .flex_items .price_label {
	display: inline-block;
	font-size: 1rem;
	font-weight: bold;
	margin-right: 10px;
	margin-bottom: 30px;
}
@media screen and (max-width:1110px) {
	.order_box .flex_items .price_label {
		margin-bottom: 0;
	}
}
.order_box .flex_items .price1 {
	font-size: 2rem;
	font-weight: bold;
	margin: 0 5px;
}
@media screen and (max-width:500px) {
	.order_box .flex_items .price1 {
		font-size: 1.75rem;
	}
}

/* 送料込みラベル */
.order_box .flex_items .shipping_included {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: bold;
	color: #d62b1f;
	border: 1px solid #d62b1f;
	border-radius: 1px;
	padding: 2px 10px 0px 10px;
	margin-bottom: 30px;
}
@media screen and (max-width: 950px) {
	.order_box_style .hidden_pc {
		display: block;
	}
	.order_box .flex_items .price_label {
		margin-bottom: 0;
	}
	.order_box .flex_items .shipping_included {
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 950px) {
	.order_box_style .hidden_pc {
		display: none;
	}
}


/*****************************
ご注文ボタン　調整
*****************************/
#special_202509_02 .btn_order a {
	width: 50%;
	height: 50px;
	border-radius: 40px;
	font-size: 1.4rem;
	margin: 0 auto;
}
#special_202509_02 .btn_to_category {
	width: 100%;
}
#special_202509_02 .btn_to_category a {
    border: 2px solid #ff9a16;
	border-bottom: 4px solid #98680a;
    background-color: #ff9a16;
}
#special_202509_02 .btn_to_category a::after {
	top: 18px;
}
#special_202509_02 .btn_to_category a.hidden_sp {
	display: flex;
	justify-content: center;
	box-sizing: border-box;
}
#special_202509_02 .btn_to_category a.hidden_pc {
	display: none;
}
#special_202509_02 .btn_to_category a span {
	padding-right: 10px;
	margin-right: 40px;
}
@media screen and (max-width: 1080px) {
	#special_202509_02 .btn_order a {
		width: 80%;
	}
}
@media screen and (max-width: 900px) {
	#special_202509_02 .btn_order a {
		width: 50%;
	}
	#special_202509_02 .btn_to_category a span {
		padding-right: 10px;
	}
}
@media screen and (max-width: 550px) {
	#special_202509_02 .btn_order a {
		width: 70%;
	}
	#special_202509_02 .btn_to_category a.hidden_sp {
		display: none;
	}
	#special_202509_02 .btn_to_category a.hidden_pc {
		display: flex;
		width: 80%;
		justify-content: center;
	}
}


/*****************************
下部のボタングループ
*****************************/
#special_202509_02 .btn_group {
	max-width: 1260px;
	margin: 0 auto;
	background-color: transparent;
	box-sizing: border-box;
	padding: 0 0 60px 0;
	background-color: transparent;
}
#special_202509_02 .btn_to_top a {
	font-size: 0.875rem;
	margin-left: 50px;
}
@media screen and (max-width: 767px) {
	#special_202509_02 .btn_group {
		width: 100%;
		text-align: center;
	}
	#special_202509_02 .btn_to_top a {
		margin: 0 auto;
	}
}

/*****************************
フッター
*****************************/
#footer {
	max-width: 1260px;
	margin: 0 auto;
	padding: 12px 0 12px 0;
	background-color: #dad7d7;
}
p.copyright {
	margin-bottom: 0;
}

