html,body {
    font-family: "メイリオ", "Meiryo", "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

:root {
	--main-theme-color: #6FB552;
	--brown-color: #523F00;
	--gray-color: #F4F4F4;
    --blue-color: #45a5d8;
    --pink-color: #F96285;
	--orange-color: #EB6A00;
    --form-border: #b6b6b5;
  }

/* 文字 */
h1 {
	color: #ffffff;
}

h2, p, label {
    color: #333333;
}

h2 {
	font-size: 1.2rem;
}

label {
	margin-bottom: 8px;
}

/* 調整用スタイル */
a {
	text-decoration: none;
}

a:hover,button:hover{
    opacity: 0.7;
}

ul,
li {
	list-style: none;
}

p {
	line-height: 1.5rem;
}

.logo {
	display: none;
}
::placeholder {
    color: #d1d1d1;
}

@media screen and (min-width: 960px) {
	.logo {
		display: block;
	}
}

main {
	background-color: #ffffff;
	display: flex;
	padding: 20px;
	padding-bottom: 40px;
	width: 100%;
}

@media screen and (min-width: 960px) {
	main {
		justify-content: center;
		gap: 100px;
		margin-top: 50px;
	}
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}
.left {
    text-align: left;
}

.large {
	font-size: 1.2rem;
}

.green {
	color: var(--main-theme-color);
}

.orange {
	color: var(--orange-color);
}
.text-gray{
    color: #6f6f6f;
    font-size: 0.85rem;
    letter-spacing: 0;
    line-height: 1.5;
}

.flex{
    display: flex;
}

@media screen and (min-width: 960px) {
	.pc-hide {
		display: none;
	}
}

/* ヘッダー */
.header {
	width: 100%;
	height: 50px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

.head {
	background-color: #ffffff;
	background-image: url(../img/front/background-image.png);
	background-repeat: repeat-x;
	height: 80px;
}

@media screen and (min-width: 960px) {
	.head {
		height: 100px;
	}
}

.head .link {
	color: #ffffff;
}

@media screen and (min-width: 960px) {
	.header {
		height: auto;
		padding-bottom: 10px;
	}
}

.header__inner {
    padding: 0 19px; /*左右の余白確保*/
    display: flex; /*ロゴとハンバーガーメニューを横に並べる*/
    align-items: flex-start;
    justify-content: space-between;
    height: inherit; /*親要素の高さを継承*/
    position: relative;
    padding-top: 18px;
}

.header_title_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header_title_container .cart_icon{
    width: 0.9rem;
    height: auto;
    margin-right: 4px;
}
.header_title_container .mypage_icon{
    width: 0.8rem;
    height: auto;
    margin-right: 4px;
}
@media screen and (min-width: 960px) {
    .header_title_container {
        margin-top: 14px;
        width: 100%;
        justify-content: flex-end;
    }
    .header_title_container .cart_icon{
        width: 20px;
        height: auto;
    }
    .header_title_container .mypage_icon{
        width: 15px;
        height: auto;
    }
}

@media screen and (min-width: 960px) {
    .header__inner {
        flex-flow: column;
        padding-top: 0;
        align-items: baseline;
    }

	.right {
		gap: 20px;
		align-items: center;
	}

	.header_title_container img {
		margin-right: 5px;
	}
}

/* ヘッダーのロゴ部分 */
.header__title {
	width: 80px;
}

@media screen and (min-width: 960px) {
	.header__title {
		width: 120px;
	}

	.header__title a {
		display: none;
	}

	.header__title img {
		display: none;
	}
}

.header__title a {
    font-size: 20px;
}

@media screen and (min-width: 960px) {
    .header__title h1 {
        justify-items: center;
    }
}

/* 会員登録・ログインボタン */
.register_button {
    display: none;
    border-radius: 40px;
    padding: 10px 20px;
    word-break: keep-all;
    background-color: #ffffff;
}

.green {
	color: var(--main-theme-color);
}

.brown {
	color: var(--brown-color);
}

.sp-header-guide {
    display: block;
}

.sp-header-guide .register_button {
    display: inline;
    border-radius: 5px;
    padding: 5px 9px;
    font-size: 0.8rem;
    font-weight: 600;
}

.sp-header-guide .register_button:first-of-type {
    margin-right: 6px;
}
.register_button:not(.sp-header-guide > .register_button) {
    display: inline;
}
@media screen and (min-width: 960px) {

    .sp-header-guide > .register_button {
        display: none;
    }

    sp-header-guide {
        display: none;
    }
}

.pc-header-guide {
	display: none;
}

@media screen and (min-width: 960px) {
    .pc-header-guide {
        display: flex;
        justify-content: end;
        word-break: keep-all;
        width: 80%;
    }
}

/* ヘッダーのナビ部分 */
.navi {
    display: flex;
    padding: 10px;
    align-items: flex-end;
    margin-top: 6vh;
    gap: 20px;
    width: 100%;
}

.nav-sp{
    z-index: 998;
}

.header__nav {
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	transform: translateX(100%);
	background-color: var(--main-theme-color); /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
	transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}
.nav-items__item{
    left: -40px;
    padding: 0;
}

.search {
    margin-bottom: 40px;
}

.search-box {
    position: relative;
    max-width: 300px;
    text-align: left;
    margin-top: 0;
    height: 38px;
}

.search-box input {
    width: 100%;
    height: 38px;
    padding: 0 10px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 25px;
    outline: 0;
    background: #eee;
}

.search-box button {
    height: 35px;
    width: 35px;
    position: absolute;
    right: 3%;
    top: 0;
    background: url("/img/front/search-icon.png");
    background-size: 57%;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    border: none;
    border-radius: 0 25px 25px 0;
}

#sbtn4:hover {
    color: #888;
}

@media screen and (min-width: 960px) {
	.header__nav {
		position: static;
		transform: initial;
		background-color: inherit;
		height: inherit;
		display: flex;
		justify-content: end;
        margin-top: 20px;
	}
    .navi {
        display: block;
        align-items: flex-end;
        margin-top: 150px;
        z-index: 1000;
    }
    .nav-items__item{
        margin:auto;
        max-width: 1020px;
        width: 100%;
    }

    .search-box {
        width: 40%;
    }
}
@media screen and (min-width: 1270px) {
    .header__nav {
        position: static;
        transform: initial;
        background-color: inherit;
        height: inherit;
        display: flex;
        justify-content: end;
        margin-top: 20px;
    }
    .navi {
        display: flex;
        margin-top: 15vh;
    }
}

/*PC時のナビゲーションメニュー、横並びにする*/
@media screen and (min-width: 960px) {
	.nav__items {
		width: 800px;
		display: flex;
		align-items: right;
		height: 80px;
	}
}

.nav-items {
	padding: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    /*width:1020px;*/
    width:250px;

}


@media screen and (min-width: 960px) {
	.nav-items {
		position: inherit;
		top: 20px;
        right:0;
		border: solid 2px var(--gray-color);
		border-radius: 40px;
		padding: 15px;
		background-color: #fff;
		align-items: center;
		/*width: 670px; 1021削除*/
        width:1020px;
	}

	.nav-items :not(:last-child) {
		border-right: 1px solid var(--brown-color);
	}

	.nav-items__item {
		width: 170px;

	}
}

@media screen and (min-width: 1270px) {
    .nav-items {
        position: inherit;
        top: 30px;
        /*left: 250px;*/
        /*transform: translate(0, 0);*/
        border: solid 2px var(--gray-color);
        border-radius: 40px;
        padding: 15px;
        background-color: #fff;
        align-items: center;
        /*width: 670px; 1021削除*/
        width:1020px;
    }

    .nav-items :not(:last-child) {
        border-right: 1px solid var(--brown-color);
    }

    .nav-items__item {
        width: 170px;

    }
}

/* ナビのリンク */
.nav-items__item a {
    color:white;
	width: 100%;
	display: block;
	text-align: left;
	/*font-size: 13px;*/
    /*1021変更*/
    font-size:16px;
	margin-bottom: 24px;
    letter-spacing: 2px;
}

.nav-items__item a.orange_btn,.button_log-out,.footer-main-item .orange_btn{
    background-color: #EB6A00;
    height: 3rem;
    margin: auto;
    border-radius: 30px;
    width: 200px;
    text-align: center;
    padding: 1rem;
}

.button_log-out{
    border-radius: 5px;
    padding: 5px;
    font-size: 13px;
    width: fit-content;
    height: fit-content;
    margin: 0;
}


@media screen and (min-width: 960px) {
	.nav-items__item a {
		margin-bottom: 0;
        color: var(--brown-color);
        letter-spacing: 0;
        text-align: center;
	}

    .orange_btn{
    display: none;
    }


}

/*アコーディオン*/
/*dl,*/
/*dt,*/
/*dd {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

.acd_item {
    width: 250px;
    /*padding: 10px 0;*/
    margin: 0 auto 24px;
}

.acd_q {
    position: relative;
    color:white;
    /*padding:20px 0;*/
    letter-spacing: 2px;
}

.acd_a {
    padding: 20px;
    border-radius: 10px;
    margin: 10px auto;
    background: #F0EEE2;
}

.category-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.category-list li {
    width: 46%;
    font-weight: 400;
    color: #000000;
    line-height: 2;
}

.category-list li a{
    color: #000000;
}

.plus::before,
.plus::after {
    content: '';
    display: block;
    width: 15px;
    height: 3px;
    border-radius: 5px;
    background: white;
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.plus::after {
    background: white;
    transform: translateY(-50%) rotate(90deg);
    transition: 0.5s;
}

.active::after {
    transform: rotate(0);
    transition: 0.5s;
}


.nav-items__item:last-child a {
	margin-bottom: 0;
}

/* ハンバーガーメニュー */
.header__hamburger {
	width: 30px;
	height: 100%;
}

.hamburger {
	background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
	border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
	z-index: 9999;
}

@media screen and (min-width: 960px) {
	/*PC時非表示にする*/
	.hamburger {
		display: none;
	}
}

/* ハンバーガーメニューの線 */
.hamburger span {
	width: 100%;
	height: 3px;
	background-color: #ffffff;
	position: relative;
	transition: ease .4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
	display: block;
}

.hamburger span:nth-child(1) {
	top: 0;
}

.hamburger span:nth-child(2) {
	margin: 8px 0;
}

.hamburger span:nth-child(3) {
	top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
    transform: translateX(0);
    overflow: hidden;
}
.navi-sp{
    z-index: 998;
    position: fixed;
}

.hamburger.active span:nth-child(1) {
    top: 22px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 0px;
    transform: rotate(-45deg);
}

/* SPとPCでナビの表示切替 */
@media screen and (min-width: 960px) {
	.navi-sp {
		display: none;
	}
}

.navi-pc {
	display: none;
}

@media screen and (min-width: 960px) {
	.navi-pc {
		display: block;
		position: relative;
	}

	.navi-pc .logo {
		position: absolute;
		top: -75px;
		z-index: 1000;
	}

	.navi-pc .nav__items nav-items {
		position: absolute;
		left: 210px;
	}
}

/* ぱんくずリスト */
.breadcrumbs {
	display: none
}
.breadcrumbs p{
    color: #6f6f6f;
}

@media screen and (min-width: 960px) {
	.breadcrumbs {
		display: block;
		width: 100%;
		margin-top: 30px;
		text-align: left;
		background-color: var(--gray-color);
		padding: 10px 20px;
	}
}

/* サイドメニュー（PC) */
.side-menu-container {
	display: none;
}
/* サイドメニュー（SP) */
.side-menu-container.sp{
    width: 100%;
    background-color: #F0EEE2;
    border-radius: 10px;
    font-weight: bold;
    margin: 40px 0;
}

.side-menu-container.sp ol{
    padding: 15px 5px;
}
.side-menu-container.sp li{
    margin-bottom: 20px;
}

.side-menu-container button {
	background-color: var(--gray-color);
	width: 100%;
	padding: 15px 0;
	text-align: center;
	margin-bottom: 20px;
	border-radius: 15px;
}

#mypage .side-menu-container button {
    background-color: var(--gray-color);
    border-radius: initial;
    margin-bottom:0;
}


@media screen and (min-width: 960px) {
	.side-menu-container {
		width: 200px;
		display: block;
	}
}

@media screen and (max-width: 959px) {
    .side-menu-container.sp {
        display: block;
    }
}

/* トップページ */
.container {
	display: flex;
	flex-direction: column;
}

/* メインコンテンツ */
.main-container {
	width: 100%;
	margin-top: 20px;
}

.main-container img {
	width: 100%;
}

@media screen and (min-width: 960px) {
	.main-container {
		width: 650px;
		margin-top: 0px;
	}

}

/* トップページ */
.top-container {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 10px;
}

/* スマートフォン時のコンテンツ */
.main-container-sp {
	display: block;
}

@media screen and (min-width: 960px) {
	.main-container-sp {
		display: none;
	}
}

/* PC時のコンテンツ */
.main-container-pc {
	display: none;
    color: #333333;
}

@media screen and (min-width: 960px) {
	.main-container-pc {
		display: flex;
		flex-flow: column;
	}
}

.main-container-pc > div {
	width: 100%;
	margin-bottom: 20px;
}

.main-container-pc .subject,h3.green-line{
	border-bottom: solid 1px var(--main-theme-color);
	padding-bottom: 7px;
    margin-bottom: 7px;
	font-size: 1.1rem;
    font-weight: 600;
}

.main-container-pc .price {
	font-weight: bold;
	font-size: 1rem;
}

.main-container-pc .price p:nth-child(2) {
	font-size: 1rem;
}

.main-container-pc .producer  {
	display: flex;
	flex-flow: row;
	gap: 20px;
	background-color: #f6f6f6;
	padding: 20px;
	border-radius: 10px;
	justify-content: space-between;
	align-items: flex-end;
}

.main-container-pc .producer-item {
	display: flex;
    align-items: center;
	gap: 10px;
}

.main-container-pc .producer .producer-address {
	line-height: 1;
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 0;
}

.main-container-pc .producer-name {
	font-size: 1rem;
}

.main-container-pc .producer p {
	margin-bottom: 10px;
	color: var(--orange-color);
}

.main-container-pc .producer p:nth-child(2) {
	font-weight: bold;
}

.main-container-pc .producer a {
	color: var(--main-theme-color);
	text-decoration: underline;
}

.product-image li.slick-slide img {
    width: 100%;
}

.main-container-pc .product-details {
	display: flex;
	flex-flow: column;
    margin-top: 20px;
}

.main-container-pc .product-details .row {
	display: flex;
	flex-flow: row;
	border-bottom: 1px solid #dedede;
	padding: 0px;
    line-height: 2;
    font-size: 0.9rem;
}

.main-container-pc .product-details .row div:nth-child(1) {
	width: 25%;
	padding: 10px;
	text-align: left;
}

.main-container-pc .product-details .row div:nth-child(2) {
	width: 75%;
	padding: 10px;
    color: #3B4043;
}

.main-container-pc .content {
	margin-top: 20px;
}

.main-container-pc .content p{
	line-height: 1.5rem;
    font-size: 0.9rem;
}

/* トップページの画像 */
.image-top-container {
    background-image: url("/img/front/toppage.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 1000px;
    width: 100%;
    min-height: 60vh;
    margin: auto;
}
@media screen and (max-width: 960px) {
    .image-top-container {
        min-height: 62vw;
    }

    .sp-header-guide {
        margin-left: 40%;
    }
}
@media screen and (max-width: 760px) {
    .image-top-container {
        min-height: 75vw;
    }

    .sp-header-guide {
        margin-left: 0;
    }
}
@media screen and (max-width: 500px) {
    .image-top-container {
        min-height: 80vw;
    }
}
@media screen and (max-width: 300px) {
    .sp-header-guide .register_button {
        padding: 3px 7px;
        font-size: 0.6rem;
    }

    .cart_icon, .mypage_icon {
        display: none;
    }
}
/*.image-top-container img {*/
/*	width: 100%;*/
/*}*/


/* 特集 */
.special-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 10px;
}

@media screen and (min-width: 960px) {
	.special-container {
		flex-direction: row;
	}
}

.special {
	width: 100%;
}

@media screen and (min-width: 960px) {
	.special {
		width: 33%;
	}
}

/* お知らせ */
.news-container {
	margin-top: 40px;
}

.news-head {
	background-image: url(../img/front/bk02.png);
	background-repeat: repeat-x;
	height: 20px;
	position: relative;
}

.news-head img {
	display: none;
}

.view-more-button{
    background-color: var(--main-theme-color);
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 40px;
    text-align: center;
}
.view-more-button.view-more-button-back{
    border: 2px solid var(--main-theme-color);
    color: var(--main-theme-color);
    background: #ffffff;
    margin: auto;
    display: block;
    width: 100%;
}
@media screen and (min-width: 960px) {
	.news-head img {
		display: block;
		position:absolute;
		right: 0;
		/*top: 0;*/
        top:-50px;
	}
    .view-more-button.view-more-button-back{
        border: 2px solid var(--main-theme-color);
        color: var(--main-theme-color);
        background: #ffffff;
        margin: auto;
        display: block;
        width: 50%;
    }
}

.news-body {
	background-color: var(--gray-color);
	border: 1px solid var(--gray-color);
	padding: 20px;
}

.news-body p {
	font-size: 1.3rem;
	margin-bottom: 10px;
}

.news-body p img {
	margin-right: 10px;
}

.news-list {
	background-color: #ffffff;
	border-radius: 15px;
	padding: 5px 10px;
	margin-bottom: 50px;
}

@media screen and (min-width: 960px) {
	.news-list {
		padding: 50px;
	}
}

.news-list p:first-child {
	margin-bottom: 30px;
}

.news-content {
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}

.news-content div {
	width: 100%;
	margin-bottom: 15px;
}

/* Sukuwell制度商品 */
.owner {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.index .owner,#mypage .owner,.purchase-custom .owner{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding:0;
    max-width: 1200px;
    width:100%;
    margin-left: auto;
    margin-right: auto;
}

.owner p {
	font-size: 16px;
}

.owner-header {
	width: 100%;
	position: relative;
}

.owner-header img.illustration {
	display: none;
}

@media screen and (min-width: 960px) {
	.owner-header img.illustration {
		display: block;
		position:absolute;
		right: 0;
		top: -200px;
	}
}

.owner-title {
	text-align: center;
	width: 100%;
}

@media screen and (min-width: 960px) {
	.owner-title {
		margin-bottom: 20px;
	}

	.owner-title p{
		display: inline-block;
	}
}

.owner-item-container {
	display: flex;
	flex-direction: column;
}

.owner-item-container::before, .owner-item-container::after {
    content: "";
    display: block;
    width: calc(33%);
}
.owner-item-container::before {
    order: 1;
}
.owner-item-container .owner-item {
    width: calc(34% - 1%);
}

@media screen and (min-width: 960px) {
	.owner-item-container {
		flex-direction: row;
		margin-bottom: 20px;
	}
}
/*@media screen and (min-width: 500px) {*/
    .index .owner-item-container ,#mypage .owner-item-container, .purchase-custom .owner-item-container, #producer .owner-item-container{
        flex-direction: initial;
    }


.owner-item {
	border-radius: 15px;
	padding: 10px;
	background-color: #ffffff;
	width: 100%;
}
.owner-item p{
    color:black;
}

.fav-producer .producer-prefecture,#feature .feature-list ul li:last-of-type{
    font-size: 12px;
    color: #717273;
    margin-top: 5px;
}
.fav-producer .producer-name{
    font-size: 16px;
    font-size: 16px;
    color: var(--orange-color);
    font-weight: bold;
}
.fav-producer .producer-description{
    font-size: 12px;
    line-height: 1.4;
    margin-top: 10px;
    height: 104px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

@media screen and (min-width: 960px) {
	.owner-item {
		width: 25%;
	}
    .owner-item-container::before, .owner-item-container::after {
        content: "";
        display: block;
        width: calc(25%);
    }
    .owner-item-container .owner-item {
        width: calc(25% - 1%);
    }
}
.owner-item-description p {
    padding:5px;
    box-sizing: content-box;
}

.owner-item-description .period {
    font-size: 0.8rem;
    text-align: left;
    padding: 5px 0;
 }
.owner-item-description .period span{
    color: #6f6f6f;
}
.owner-item-description .period p{
    width:100%;
}

.owner-item-description .price {
	/*font-size: 1.2rem;*/
    font-size: 1rem;
    color: #EB6A00;
}

.owner-item-image img {
	width: 100%;
    position: relative;
}


.owner-item.end .owner-item-image:after,.owner-item.close .owner-item-image:after,.owner-item.sold-out .owner-item-image:after{
    color: #ffffff;
    width: 100%;
    height: 40px;
    background-color: rgba(30,30,30,0.7);
    position: absolute;
    text-align: center;
    top: 40%;
    line-height: 2.5;
    font-size: 0.9rem;
}
.owner-item.end .owner-item-image:after {
    content: "配信終了しました";
}
.owner-item.close .owner-item-image:after {
    content: "募集期間外です";
}
.owner-item.sold-out .owner-item-image:after{
    content: "売り切れ";
}

.owner-item-info {
	display: flex;
	align-items: center;
    border-top: 1px solid #6f6f6f;
    height: 5rem;
    display: table;
    width: 100%;
}

.owner-item-info-image {
	/*width: 30%;*/
    /*padding-top: 10%;*/
    width: 4rem;
    margin: auto;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

#mypage .owner-item-container{
    margin: 40px 0 60px 0;
}

.form_item button.w_25 {
    width: 25%;
}
.form_item button.w_80 {
    width: 80%;
}
.owner-item-info-image img {
	width: 100%;
}

.owner-item-info-name {
    color: #6f6f6f;
    height: 4rem;
    display: table-cell;
    vertical-align: middle;
    font-size: 0.8rem;
}
.owner-item-info-name span{
    color: black;
}

.tag_item{
    display: inline-block;
    background-color: whitesmoke;
    border-radius: 20px;
    border: #F4F4F4 1px solid;
    padding: 5px;
    margin: 1px;
    font-size: 0.7rem;
}
.tag_area{
    height: 3.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* 地産商品 */
.products-head {
	background-image: url(../img/front/bk03.png);
	background-repeat: repeat-x;
	height: 20px;
	background-color: var(--gray-color);
	position: relative;
}

.products-head img.illustration-right {
	display: none;
}

@media screen and (min-width: 960px) {
	.products-head img.illustration-right {
		display: block;
		position:absolute;
		right: 0px;
		top: -70px;
	}
}
@media screen and (max-width: 670px) {
    .owner-item.close .owner-item-image:after {
        line-height: 3;
        font-size: 0.7rem;
    }
}

.products-body img.illustration-left {
	display: none;
}

@media screen and (min-width: 960px) {
	.products-body img.illustration-left {
		display: block;
		position:absolute;
		left: 0px;
		top: 100px;
	}
}

.products-body {
	padding: 20px;
	display: flex;
    flex-direction: column;
	align-items: center;
	position: relative;
}

.products-title {
	text-align: center;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	gap: 10px;
}

.products-description p {
	color: var(--main-theme-color);
	margin-bottom: 10px;
}

.products-content {
	text-align: center;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	gap: 10px;
	flex-direction: column;
}

/* イベント */
.event-head {
	background-image: url(../img/front/bk04.png);
	background-repeat: repeat-x;
	height: 20px;
	background-color: #fff;
	position:relative;
}

.event-head img.illustration {
	display: none;
}

@media screen and (min-width: 960px) {
	.event-head img.illustration {
		display: block;
		position:absolute;
		/*left: 0px;*/
		/*top: 185px;*/
        right:0;
        bottom:-60px;
		z-index: 999;
	}
}

.event-body {
	padding: 20px;
	display: flex;
    flex-direction: column;
	align-items: center;
	background-color: var(--gray-color);
}

.event-title {
	text-align: center;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	gap: 10px;
}

.event-description p {
	color: var(--main-theme-color);
	margin-bottom: 10px;
}

.event-content {
	text-align: center;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	gap: 10px;
	flex-direction: column;
}

.button {
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex.purchase-button-box{
    justify-content: space-between;
    margin: 50px auto 0;
    width: 70%;
}

.purchase-button {
    width: 100%;
    color: #ffffff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    background: #d13838;
    border: 2px solid #d13838;
    word-break: keep-all;
}

/*非活性時*/
.purchase-button.inactive {
    background: grey;
    border: 2px solid grey;
}
.purchase-button.inactive:hover {
    opacity: 1;
}

.purchase-button.purchase-button-back.button-back{
    color: var(--main-theme-color);
    border: 2px solid var(--main-theme-color);
}

.purchase-button.purchase-button-back{
    border: 2px solid #d13838;
    background: #ffffff;
    color: #d13838;
}

/* 商品詳細 画像 */
.slider {
	width: 94%;
	margin: 0 auto;
}

.slider img {
	width: 100%;
	/*スライダー内の画像を横幅100%に*/
	height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
	margin: 0 10px;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
	position: absolute;
	/*絶対配置にする*/
	top: 42%;
	cursor: pointer;
	/*マウスカーソルを指マークに*/
	outline: none;
	/*クリックをしたら出てくる枠線を消す*/
	border-top: 2px solid #666;
	/*矢印の色*/
	border-right: 2px solid #666;
	/*矢印の色*/
	height: 15px;
	width: 15px;
}

.slick-arrow:before{
    content:""!important;
}
.slick-prev:before, .slick-next:before {
    color: var(--main-theme-color)!important;
    position: absolute;
    content: "";
    top: calc(50% - 4px);
    width: 15px;
    height: 15px;
    border-top: 2.5px solid var(--main-theme-color);
    border-right: 2.5px solid var(--main-theme-color);
}
.slick-prev:before{
    transform: rotate(-135deg);
    left: 10px;
}
.slick-next:before{
    transform: rotate(45deg);
    right: 10px;
}
/*ドットナビゲーションの設定*/
.slick-dots {
	text-align: center;
	margin: 20px 0 0 0;
}

.slick-dots li {
	display: inline-block;
	margin: 0 5px;
}

.slick-dots button {
	color: transparent;
	outline: none;
	width: 8px;
	/*ドットボタンのサイズ*/
	height: 8px;
	/*ドットボタンのサイズ*/
	display: block;
	border-radius: 50%;
	/*ドットボタンの色*/
}
.slick-dots li button:before{
    opacity: .08!important;
}
.slick-dots li.slick-active button:before{
    color: var(--main-theme-color)!important;
    opacity: 1!important;
}
/* .main-container-pc .product-images {
	display: flex;
	flex-flow: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	overflow-x: hidden;
	gap: 20px;
} */

/* .main-container-pc .product-images li {
	width: 49%;
	display: inline-block;
}

.main-container-pc .product-images img {
	width: 100%;
} */

/* 商品詳細 画像スライダー */

main h2 {
	margin-bottom: 20px;
	border-bottom: 1px solid #f6f6f6;
    font-size: 1.2rem;
    font-weight: 600;
}

@media screen and (min-width: 960px) {
	main h2 {
		text-align: center;
		border-bottom: none;
	}
}

/* 商品情報 */
.product-image {
	margin-bottom: 30px;
}

.product-details {
	margin-bottom: 20px;
}

.product-details-item {
	text-align: center;
	margin-bottom: 10px;
}

.product-details-item p {
	overflow-wrap: break-word;
	line-height: 1.7rem;
}

.product-details-item p.description {
	text-align: left;
}

/* 入力フォーム */
form {
	margin-top: 15px;
}

.form_container {
	width: 100%;
}

.form_container label {
	font-size: 1rem;
	display: block;
}

.form_container select {
	padding: 5px;
	margin-bottom: 10px;
	color: #6f6f6f;
	border: 1px solid #f6f6f6;
}

.form_container input[type="checkbox"] {
	margin-right: 5px;
}

/* 購入手続き */
.form_container .order {
	background-color: #f6f6f6;
	padding: 5px;
}

.form_container .order .product_name {
	font-size: 1.2rem;
}

.form_container .order .purchase_detail {
	font-weight: bold;
	margin-top: 15px;
	margin-left: 10px;
}

.form_container .total {
	background-color: #edf4f9;
	padding: 5px;
	margin-top: 5px;
	text-align: right;
	font-size: 1.2rem;
}

/* 注文完了 */
.form_container .purchase_fix {
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
    padding-bottom:20px;
}

.order .form_container .purchase_fix {
    height:initial;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form_item_2column {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.form_item_2column .form_item {
	width: 48%;
}

.form_item input {
	width: 100%;
	padding: 0 10px;
	border: 1px solid var(--form-border);
	border-radius: 5px;
	margin-bottom: 20px;
    height: 40px;
    font-size: 1rem;
    color: #333333;
}
.form_item input.zipcode{
    width: 40%;
    margin-right: 10px;
}

.register input[type=password] {
    margin-bottom: 0;
}

.zip-code-area {
	display: flex;
	align-items: center;
}

.form_item textarea {
	width: 100%;
    border: 1px solid var(--form-border);
	border-radius: 5px;
	margin-bottom: 20px;
	padding: 5px;
    color: #333333;
}

.form_item select {
	padding: 0 10px;
    height: 40px;
	border: 1px solid #989899;
	border-radius: 5px;
	margin-bottom: 20px;
    font-size: 0.9rem;
    color: #333333;
    width: 100%;
    outline: none;
}

.form_item .select_box{
    position: relative;
    width: fit-content;
    width: 100%;
}

.form_item .select_box:after{
    position: absolute;
    top: 45px;
    right: 16px;
    width: 0;
    height: 0;
    border-width: 7px 5px 0 5px;
    border-style: solid;
    border-color: #979899 transparent transparent transparent;
    content: "";
    pointer-events: none;
}
.form_attention {
	text-align: right;
	font-size: 0.8rem;
	text-decoration: underline;
	text-align: center;
}

.form_attention p, .form_attention span {
	color: #609ff5;
}

.form_item button{
	width: 100%;
	color: #ffffff;
	padding: 10px;
	border-radius: 5px;
	text-align: center;
    background-color: var(--main-theme-color);
}
.form_item.col2 button{
    width: 20%;
}

.form_item button.button_fa6285{
    background-color: var(--pink-color);
}

.form_item button.button_45a5d8{
    background-color: var(--blue-color);
}
.form_item button.button_zipcode{
    background-color: #e1e1e1;
    border: 1px solid #656565;
    color: #656565;
    width: 100%;
}

.form_item .gray_button {
	background-color: #9c9c9c;
}

.form_item .auto-input-button {
	background-color: #f6f6f6;
	color: #6f6f6f;
	padding: 7px;
	border: 1px solid #9f9f9f;
	border-radius: 3px;
	width: 100px;
	font-size: 0.8rem;
	margin-top: 0;
	margin-bottom: 20px;
	margin-left: 10px;
}

.field-title{
    color: #333333;
    display: block;
    margin-bottom: 10px;
}

.zip-code-search{
    display: flex;
}


@media screen and (min-width: 960px) {
	.form_item button:not(.w_80,.button_zipcode) {
		width: 120px;
	}
}

/* フッター */
.footer {
	display: flex;
    flex-direction: row;
    flex-flow: column;
    align-items: center;
    font-size: 12px;
    padding-bottom: 0;
}

.footer-top {
	display: flex;
    flex-direction: row;
    flex-flow: column;
    align-items: center;
    font-size: 12px;
    padding-bottom: 0;
	background-color: var(--gray-color);
}

.footer .footer-head {
	background-image: url(../img/front/background-image-footer.png);
	background-repeat: repeat-x;
	background-color: #fff;
	height: 15px;
	width: 100%;
}

.footer-top .footer-head-top {
	background-image: url(../img/front/background-image-footer.png);
	background-repeat: repeat-x;
	background-color: var(--gray-color);
	height: 15px;
	width: 100%;
}

@media screen and (min-width: 960px) {
    .footer, .footer-top {
        position: relative;
		padding-top: 31px;
    }
}

.footer-main {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: var(--brown-color);
	gap:20px
}

@media screen and (min-width: 960px) {
	.footer-main {
		display: flex;
		justify-content: flex-start;
		width: 100%;
		flex-direction: row;
		padding: 60px;
	}
}

.footer-register {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
	justify-items: center;
}

/* フッター会員登録・ログインボタン */
.footer_register_button {
    border-radius: 40px;
    padding: 10px 20px;
	background-color: #ffffff;
}

.footer-main-item {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer-main-item p {
	/*color: rgba(255,255,255, 0.7);*/
    color:white;
	text-align: center;
}

.footer-main-item img {
	margin-bottom: 10px;
}

@media screen and (min-width: 960px) {
	.footer-main-item {
		width: 20%;
		justify-content:flex-start;
	}

	.footer-main-item:first-child {
		width: 40%;
	}

	.footer-main-item:not(:first-child) {
		width: 20%;
	}
}

/* フッター 利用規約など */
.footer-text {
    order: 1;
    text-align: center;
    line-height: 1.4rem;
}

@media screen and (min-width: 960px) {
	.footer-text {
		display: flex;
        gap: 100px;
        line-height: 1rem;
	}
}

/* プライバシーマーク */
.footer-privacymark {
    order: 2;
}

/* プライバシーマーク(PCだけで表示) */
.footer-privacymark-pc {
    display: none;
}

@media screen and (min-width: 960px) {
    .footer-privacymark-pc {
        display: block;
        position: absolute;
        right: 18px;
        bottom: 0;
    }
}

.footer-privacymark img, .footer-privacymark-pc img {
    width: 75px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media screen and (min-width: 960px) {
    .footer-privacymark {
        width: 100%;
        text-align: right;
        display: none;
    }
}

/* 会社名 */
.footer-company {
    order: 3;
	text-align: center;
	background-color: var(--brown-color);
	width: 100%;
	margin-bottom: 0;
}

@media screen and (min-width: 960px) {
	.footer-company {
		margin-bottom: 0;
	}
}

.footer-company p {
	color: rgba(255,255,255, 0.7);
	font-weight: bold;
}

.footer-company p:nth-child(2) {
	font-size: 0.6rem;
}

.footer-company img {
	margin-left: 5px;
}

@media screen and (min-width: 960px) {
    .footer-company {
        order: 3;
        margin-bottom: 0;
    }
}

/*!* ページTOPに戻る *!*/
/*.pagetop{*/
/*    display: none;*/
/*    position: fixed;*/
/*    right: 25px;*/
/*    bottom: 25px;*/
/*}*/
/* pagetop上書きフローディングバナー */
.f-banner{
    display: none;
    position: fixed;
    right: 25px;
    bottom: 25px;
    box-shadow: 5px 5px 5px 5px rgb(0 0 0 / 30%);
    background: #ffffff;
}

.f-banner a img {
    width: 200px;
    height: 100px;
    object-fit: contain;
}

/*toppage 浮遊*/
.fuyu {
    animation: fuwafuwa 3s infinite;
}
@keyframes fuwafuwa {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}
.bg_img2{
    background-image: url("/img/front/img13.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
    padding-bottom:60px;
}

.search-menu{
    /*background-color: #F4F4F4;*/
    /*padding: 15px 0;*/
    /*text-align: center;*/
    /*margin-bottom: 20px;*/
    /*border-top-radius: 15px;*/
}

.search-menu .category_title{
    background-color: #6fb051;
    padding: 15px 0;
    text-align: center;
    border-radius: 15px 15px 0 0;
    color: white;
}

.search-list{
    background-color: #f0eee3;
    border-radius:0 0 15px 15px;
    margin-bottom: 20px;
    padding: 20px 0;
}

.search-list li{
    text-align: left;
    padding: 5px 0 5px 20%;
    /*opacity: 0.6;*/
}


.title-bg-f4f4f4{
    background-color: #F4F4F4;
    /*height:100px;*/
    /*margin:auto;*/
    /*padding:10px;*/
    /*display: inline-block;*/
}


.title-bg{
    height:100px;
    margin:auto;
    padding:10px;
    display: inline-block;
}

.title-bg p{
    padding: 20px 0;
    color: #523f02;
    font-size: 1.3rem;
    font-weight: bold;
    vertical-align: middle
}
.title-bg img {
    width: 3rem!important;
    margin-right: 10px;
    vertical-align: middle;
}
.title-bg img.subsc_icon {
    width: 4rem!important;
}
/*indexのブロック*/
.index .main-container img {
    width: initial;
}

.index .main-container .owner-item-container img{
    width:100%;
    border-radius: 10px;
}
.index .main-container .owner-item-container img.image_circle{
    width:50px;
    height: 50px;
}
.index .owner-item,#mypage .owner-item,.purchase-custom.owner-item{
    border: none;
}

@media screen and (max-width: 959px) {
    .index .owner-item ,#mypage .owner-item,.purchase-custom .owner-item,#producer .owner-item{
        width: 49%;
        margin-left: 1%;
        margin-bottom: 3%;
    }
    main#mypage{
        display: block;
    }
    .title-bg img {
        margin-right: 0;
    }
}
@media screen and (max-width: 760px) {
    .fuyu {
        animation:initial;
    }
    .for_responsive .top-container{
        padding:0;
    }
}

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

    .index .owner-item-info-image, #mypage .owner-item-info-image,.purchase-custom .owner-item-info-image{
        width: 30%;
        padding: 8px;
    }
}

/*slider*/
.slider-item .slider img{
    height: initial;
}

/*ご注文内容のご確認*/
.title_border{
    display: flex;
    align-items: center; /* 垂直中心 */
    justify-content: center; /* 水平中心 */
    max-width:1200px;
    width:100%;
    margin:0 auto 50px;
}
.title_bg{
    background-color:#f0f0f0;
    padding:5px 0;
    margin:10px 0;
}
.title_border:before, .title_border:after {
    border-top: 5px solid var(--main-theme-color);
    content: "";
    width: 30%; /* 線の長さ */
    border-radius: 4px;
}

main .title_bg h2 {
    margin:0;
    padding-left: 10px;
    font-size: 1.3rem;
}

#purchase div,
#purchase p{
    font-size:1rem;
    letter-spacing: 0.1rem;
    word-break:break-word;
    color: #333333;

}


main .title_border h2 {
    margin:0;
    width: fit-content;
    max-width: 100%;
    font-size: 1.7rem;
    border-bottom:none;
    text-align: center;
    color: #333333;
    padding: 0 0.5rem;
}

.relative{
    position: relative;
}
.p_20px{
    padding:20px;
}
.p_side_20px{
    padding:0 20px;
}
.announce-custom{
    width:90%;
    margin:auto;
}
.bold{
    font-weight: bold;
}
.txt_1_5{
    font-size: 1.5rem;
}
#purchase .txt_1rem{
    font-size: 1rem;
}
.txt_right{
    text-align: right;
}
.txt_red{
    color: #e45d55;
}
.txt_white{
    color: white;
}
.txt_6f6f6f {
    color: #6f6f6f;
}
.bg_6f6f6f{
    background-color: #9f9f9f;
}
.bg_top_radius{
    background-color: var(--main-theme-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px 5px 0 0;
    display: flex;
    justify-content: space-between;
}
.p_b_10px{
    padding-bottom: 10px;
}
.m_r_20{
    margin-right: 20px;
}
.m_r_0{
    margin-right: 0;
}
.m_b_0{
    margin-bottom: 0;
}
.m_b_10px {
    margin-bottom: 10px;
}
.m_b_40px {
    margin-bottom: 40px;
}
.m_b_20px {
    margin-bottom: 20px;
}
.m_t_20px {
    margin-top: 20px;
}
.m_t_40px {
    margin-top: 40px;
}
.m_auto {
    margin: auto;
}
.m_l_auto{
    margin-left: auto;
}
.order table td{
    padding:5px;
}
.flex{
    display:flex;
}
.w_10{
    width:10%;
}
.w_20{
    width:20%;
}
.w_25{
    width:25%;
}
.w_30{
    width:30%;
}
.w_45{
    width:45%;
}
.w_75{
    width:75%;
}
.w_200px{
    width:200px;
}

.j_center {
    justify-content: center;
}

.for_img3 {
    width: 100%;
}
.no_long{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5rem;
    height: 4.5rem;
    word-wrap: break-word;
}
@media screen and (min-width: 960px) {
    main .title_bg h2 {
        text-align: left;
        padding-left: 10px;
        font-size: 1.2rem;
    }
}
.form_item p.button_45a5d8.coupon-checked{
    width: 60%;
    color: var(--main-theme-color)!important;
    letter-spacing: 0rem!important;
}

.form_item .button_45a5d8.coupon-checked:before{
    content: "\f058";
    color: var(--main-theme-color);
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
    margin-right: 5px;
}
label[for="quantity"]{
    word-break: keep-all;
}
@media screen and (max-width: 959px) {
    .bg_img3 {
    display: none;
    }

    .title_border {
        margin: 0 auto 20px;
    }
    .announce-custom{
        width: 100%;
    }

}

@media screen and (max-width: 670px) {
    main .title_border h2 {
        font-size: 1.3rem;
    }
    main h2 strong{
        font-size: 1.5rem;
    }
    .form_item.col2 button{
        width: 45%;
    }
    #purchase{
        margin-top: 20px;
    }
    #purchase .form_item .button_45a5d8{
        width: 40%;
    }
    .show_receiver .w_25.form_item{
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .title_border{
        margin: 0 auto 30px;
    }
}

@media screen and (max-width: 400px) {
    .title_border:before, .title_border:after {
        width: 20%;
    }
    #purchase div, #purchase table, #purchase h2, #purchase p {
        font-size: 0.9rem;
    }

    .sp_p_10px {
        padding: 10px
    }
}
.border_b{
    border-bottom: #9f9f9f 1px solid;
}
.purchase-button2 {
    width: 110px;
    background-color: var(--blue-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    margin: 0;
    height: 2.3rem;
    font-size: 0.9rem;
}
.purchase-button2 font{
    color: white;
}
.price_area{
    max-width:400px ;
    width: 100%;
    color: #6f6f6f;
}
.price_area th{
    width:60%;
}
.price_area td{
    width:40%;
    text-align: right;
}
.coupon_area .form_item input{
    width: 90%;
    margin-bottom: 0;
}
.cancel_rule{
    border: #9f9f9f 1px solid;
    width:100%;
    color:#6f6f6f;
    padding:20px;
    font-weight: bold;
}
.purchase-button-back {
    background-color: #9f9f9f;
    color: #ffffff;
}
/*"purchase-button2より下*/
.m_l_20px{
    margin-left: 20px;
}
.show_price table{
    max-width:500px;
    width:100%;
}
.show_products td{
    padding-right:10px;
}
.show_products th {
    font-weight: initial;
    padding:10px;
}
.show_products td{
    padding:10px 10px 10px 0;
}
.products-table table{
    color: #333333;
}

#receiver .main-container {
    max-width: 1200px;
    width: 90%;
    padding-left: 0;
    margin:20px auto;
}

#receiver .shipping_to {
    padding: 8px;
    background-color: #6FB051;
    margin-bottom: 30px;
}

#purchase .main-container {
    max-width: 1200px;
    width: 90%;
    padding-left: 0;
    margin:auto;
}

.bg_img3{
    background-image: url("/img/front/img12.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
    height: 150px;
    width: 100px;
    position: absolute;
    bottom:0;
    right:0;
}
.products-table img{
    width: 160px;
    height: 110px;
    object-fit: cover;
}

@media screen and (min-width: 960px) {
    .purchase-button2 {
        width: auto;
    }
}
@media screen and (max-width: 670px) {
    .show_products .w_25,
    .show_products .w_30,
    .show_products .w_45,
    .show_receiver .w_75{
        width:100%;
        display: block;
        padding:15px;
    }
    .products-table table thead {
        display: none;
    }
    .products-table table tr {
        width: 100%;
    }
    .products-table table td {
        display: block;
        text-align: right;
        width: 100%;
        padding: 10px;
    }
    .products-table table td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        margin-right: 10px;
    }
    .show_products td .product_name{
        width: calc(100% - 50px);
        margin-left: auto;
        margin-bottom: 0;
    }
    .show_products tr:nth-of-type(2) .w_25{
        padding-top: 30px;
    }
    .products-table .button_5799cb{
        margin: 10px 0;
    }
    .purchase-button{
        padding: 10px;
    }
    #purchase .flex.purchase-button-box{
        display: flex;
        width: 100%;
    }
    .flex.purchase-button-box .w_45{
        width: 48%;
    }
    #purchase .main-container {
        width: 100%;
    }
}
@media screen and (max-width: 500px) {
    .purchase-button2 {
        margin: 10px auto 10px 0;
        font-size: 0.8rem;
    }
    .show_receiver .flex{
        display: block;
    }
    .show_price table{
        font-size: 1rem;
    }
    .m_l_20px{
        margin-left: 0;
    }
    .show_products td{
        padding:0;
    }
}

/*お届け先情報*/
#purchase .border_90 {
    border: #6f6f6f 1px solid;
    max-width: 1000px;
    width: 95%;
    padding: 20px;
}
#purchase .border_90 table {
    margin: 20px;
}
#purchase .border_90 table th {
    width: 30%;
    font-weight: normal;
    line-height: 2rem;
}
#purchase .border_90 table td {
    width: 70%;
    line-height: 2rem;
}
#receiver .border_90 {
    border: #6f6f6f 1px solid;
    max-width: 1000px;
    width: 95%;
    padding: 20px;
}
#receiver .border_90 table {
    margin: 20px;
}

#receiver .border_90 table th {
    width: 30%;
    font-weight: normal;
    line-height: 2rem;
}

#receiver .border_90 table td {
    width: 70%;
    line-height: 2rem;
}
.for_w100 .form_item input.zip-code {
    width:100%;
}

.purchase-button_ad{
    width: 200px;
    background-color: var(--blue-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    margin: 20px auto;
    font-size: 0.9rem;
    display: block;
}

.for_m_none .purchase-button_go{
    margin:auto;
}
#receiver .for_m_none form{
    margin: 0 0 0 20px;
}
#receiver .for_m_none form .purchase-button_go{
    margin:auto;
}


@media screen and (max-width: 600px) {
    #purchase .border_90 table th {
        width: 100%;
        display: block;
        font-weight: normal;
        line-height: 2rem;
    }

    #purchase .border_90 table td {
        width: 100%;
        display: block;
        line-height: 2rem;
    }
    .for_responsive .flex {
        display: block;
    }

    #receiver .for_m_none form{
        margin: 0 auto;
        text-align: center;
    }

    #receiver .for_m_none form .purchase-button_go{
        margin: 10px auto 0;
    }

    .for_responsive a {
        display: block;
        margin: 10px auto;
        text-align: center;
    }

    /*.delete_form button {*/
    /*    margin: 0;*/
    /*}*/
}


/*カート*/
.farmer-parts .title{
    background-color: #f4f4f4;
    text-align: left;
    padding: 5px;
    border-radius: 10px;
    max-width: 1000px;
    width:90%;
    margin:auto;
}
.farmer-parts img{
    width: 50px;
    height: 50px;
    border-radius: 25px;
}
.farmer-img{
    top:50%;
    left:10px;
}
.icon_button{
    width:20px;
    height: 20px;
    border-radius: 15px;
    border:#9f9f9f 1px solid;
    text-align: center;
    margin: 0 7px;
}
.icon_button p{
    line-height: 1;
    font-size: 1.1rem;
}
/*カートのgrid*/
.order_block{
    max-width: 1000px;
    width: 90%;
    border-bottom: #9f9f9f 1px solid;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 0.5fr;
    grid-template-rows: 1fr 0.5fr 0.5fr;
    gap: 10px;
    text-align: left;
    margin: auto;
    padding: 20px;
}
.order_block .grid_p{
    padding:5px;
    font-size: 0.9rem;
    color: #333333;
    line-height: 1rem;
}

.order_block .grid_1{
    grid-row: 1;
    grid-column: 1;
}
.order_block .grid_2{
    grid-row: 1;
    grid-column: 2;
}
.txt_5799cb{
    color: var(--blue-color);
}
.order_block .grid_3{
    grid-row: 1;
    grid-column: 3;
    text-align: center;
}
.txt_e45d55{
    color: #e45d55;
}
.order_block .grid_3 div{
    padding:0 20px 5px;
}

.order_block .grid_4{
    grid-row: 1;
    grid-column: 4;
    text-align: center;
    display: inline-grid;
}
.order_block .grid_5{
    grid-row: 2;
    grid-column: 1;
}
.order_block .grid_6{
    grid-row: 2;
    grid-column: 2/5;
    text-align: left;
}
.order_block .grid_7{
    grid-row: 3;
    grid-column: 1;
}
.order_block .grid_8{
    grid-row: 3;
    grid-column: 2/5;
    text-align: left;
}
.m_tb_1rem{
    margin:1rem auto;
}

.inline_block{
    display: inline-block;
}

.title_block{
    align-items: center;
    display: table;
    width: 100%;
}

#cart .item_img{
    width: 4rem;
    margin: auto;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

#cart .item_name{
    display: table-cell;
    vertical-align: middle;
    font-size: 0.9rem;
}
.grid_4 .delete_btn{
    height: 2rem;
    margin: auto;
}
.grid_4 .delete_btn img{
    width: 20px;
}
#cart .flex.purchase-button-box{
    width: 90%;
    margin: 20px auto 0;
}
#cart .flex.purchase-button-box .w_45{
    width: 49%;
}
.order_block .grid_1 img{
    width: 200px;
    display: block;
    margin: auto;
    object-fit: cover;
    height: 150px;
}
@media screen and (max-width: 760px) {
    .order_block{
        width: 90%;
        display: grid;
        grid-template-columns: 0.4fr 0.7fr;
        grid-template-rows: 2fr 0.7fr 0.7fr 0.7fr;
        gap:0 10px;
        text-align: left;
        margin: auto;
        padding: 10px;
    }
    .order_block .grid_1{
        grid-row: 1;
        grid-column: 1/5;
    }
    .order_block .grid_2{
        grid-row: 2;
        grid-column: 1/3;
        align-items: center;
        display: flex;
    }

    .order_block .grid_3{
        grid-row: 2;
        grid-column: 3/4;
        align-items: center;
        display: block;
    }
    .order_block .grid_3 div{
        display:inline-grid;
        padding:0 10px 0 0;
    }
    .order_block .grid_4{
        grid-row: 2;
        grid-column: 4/5;
        align-items: center;
        display: flex;
    }

    .order_block .grid_5{
        grid-row: 3;
        grid-column: 1;
        align-items: center;
        display: flex;
    }
    .order_block .grid_6{
        grid-row: 3;
        grid-column: 2/5;
        align-items: center;
        display: flex;
    }
    .order_block .grid_7{
        grid-row: 4;
        grid-column: 1;
        align-items: center;
        display: flex;
    }
    .order_block .grid_8{
        grid-row: 4;
        grid-column: 2/5;
        align-items: center;
        display: flex;
    }
    .icon_button{
        margin-left:5px;
    }
    #cart .sp-none{
        display: none;
    }
    #cart .purchase-button{
        width: 100%;
    }
    #cart .flex.purchase-button-box{
        width: 100%;
    }
}

@media screen and (max-width: 680px) {
    .order_block{
        width: 90%;
        display: grid;
        grid-template-columns: 0.4fr 0.7fr;
        grid-template-rows: 1fr 0fr 0.5fr 0.5fr 0.5fr;
        gap: 10px 15px;
        text-align: left;
        margin: auto;
    }
    .order_block .grid_1{
        grid-row: 1;
        grid-column: 1/3;
    }
    .order_block .grid_2{
        grid-row: 2;
        grid-column: 1/3;
        display: block;
    }
    .order_block .grid_2 p.txt_e45d55{
        text-align: right;
    }
    .order_block .grid_3{
        grid-row: 3;
        grid-column:1/2;
        text-align: center;
        display: block;
    }
    .order_block .grid_3 div{
        display:block;
        padding:0;
        text-align: center;
    }
    .order_block .grid_4{
        grid-row: 3;
        grid-column: 2;
        text-align: left;
        display: block;
    }
    .order_block .grid_5{
        grid-row: 4;
        grid-column: 1/2;
        text-align: center;
        display: block;
    }
    .order_block .grid_6{
        grid-row: 4;
        grid-column: 2;
        text-align: left;
        display: block;
    }
    .order_block .grid_7{
        grid-row: 5;
        grid-column: 1/2;
        text-align: center;
        display: block;
    }
    .order_block .grid_8{
        grid-row: 5;
        grid-column: 2;
        text-align: left;
        display: block;
    }
    .icon_button{
        margin: 0 3px;
    }
}
@media screen and (max-width: 500px) {
    .farmer-parts .title {
        max-width: 1000px;
        width: 100%;
        margin: auto;
    }
    .order_block{
        width: 100%;
    }
    .purchase-button{
        word-break: break-all;
    }
    .order_block .grid_p {
        padding: 5px;
        color: #333333;
    }
    .order_block .grid_p p{
        font-size: 0.8rem;
        line-height: 1rem;
    }
}
@media screen and (max-width: 300px) {
    .icon_button {
        width: 20px;
        height: 20px;
        border-radius: 15px;
        border: #9f9f9f 1px solid;
        text-align: center;
    }
    .icon_button:first-of-type {
        margin: 0 10px 0 0!important;
    }
    .icon_button:last-of-type {
        margin: 0 0 0 10px!important;
    }

    .icon_button p {
        line-height: 1;
        font-size: 1.1rem;
    }
}
.purchase-button_berder {
    width: 200px;
    border:#6f6f6f 1px solid;
    color: #6f6f6f;
    padding: 15px 20px;
    border-radius: 5px;
    text-align: center;
    margin: 20px auto;
    font-size: 0.9rem;
    display: block;
}

.sum_box{
    text-align: right;
    padding: 20px 50px;
}

/*mypage*/
.button_5799cb {
    width: 50%;
    background-color: var(--blue-color);
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin: 30px auto;
    height: 2.3rem;
    font-size: 0.9rem;
}
.button_5799cb font{
    color: white;
}
.button_86ae57 {
    width: 90%;
    background-color: var(--main-theme-color);
    color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin:30px auto;
}
.border_86ae57{
    border-top: 2px var(--main-theme-color) solid;
    border-bottom: 2px var(--main-theme-color) solid;
    padding: 10px 0;
}
.border_top_86ae57{
    border-top: 2px var(--main-theme-color) solid;
    padding: 15px 0 0;
}
.parent span{
    margin-bottom: 10px;
    margin-left: 15px;
    display: block;
}
/*#mypage .side-menu-container ol{*/
/*    padding:10px;*/
/*}*/
#mypage .p_l_15{
    padding-left:15px;
}
.underbar{
    margin: -10px auto 0;
    width: 50px;
    font-size: 1.8rem;
    border-bottom: var(--main-theme-color) 5px solid;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 40px;
}

main h2{
    border-bottom: initial;
    margin: 20px auto;
    text-align: center;
    width: fit-content;
    color: #333333;
}
main h2 strong{
    padding: 0 15px;
    font-weight: 600;
}
.follow_block{
    margin:auto;
}

#mypage .shipping-info,#receiver .shipping-info{
    border: 1px solid var(--form-border);
    width: 100%;
    margin: 10px auto;
    padding: 20px;
    border-radius: 4px;
    color: #333333;
}
#mypage .shipping-info table,#receiver .shipping-info table{
    width: 100%;
}
#mypage .shipping-info th,#mypage .shipping-info td,#receiver .shipping-info th,#receiver .shipping-info td{
    padding: 10px;
    word-break: keep-all;
}
#mypage .shipping-info tr,#receiver .shipping-info tr{
    border-bottom: 1px solid #d9ddcf;
}
#receiver .shipping-info form{
    margin-top: 0;
}
#receiver .form_item.flex{
    justify-content: center;
}
.form_confirm,#contact .form_confirm {
    width: 70%;
    margin: 40px auto;
}
.form_confirm .form_item , #contact .form_confirm .form_item{
    border-bottom: 1px solid var(--form-border);
    margin-bottom: 15px;
    padding: 0 10px;
}
#contact .form_confirm .form_item{
    padding: 0 10px 10px;
}
.form_confirm span.field-title #contact .form_confirm .form_item label{
    font-size: 14px;
}
@media screen and (min-width: 960px) {
    #mypage .shipping-info,#receiver .shipping-info{
        width: 80%;
        margin: 10px auto;
        padding: 40px 60px;
    }
    #mypage .shipping-info th,#mypage .shipping-info td,#receiver .shipping-info th,#receiver .shipping-info td{
        padding: 15px;
    }
}

@media screen and (max-width: 960px) {
    #mypage .shipping-info .m_t_40px,#receiver .shipping-info .m_t_40px{
        margin-top: 0;
    }
    #mypage .shipping-info .m_l_20px, #receiver .shipping-info .m_l_20px{
        margin-top: 10px;
    }
    .form_item button.w_80 {
        width: 100%;
    }
    #mypage .form_confirm,#contact .form_confirm{
        width: 100%;
    }
}

/** マイページ 注文履歴 */
#mypage .order-history th,
#mypage .order-history td {
    padding: 20px;
    text-align: center;
    vertical-align: middle;
    font-size: 1rem;
}

#mypage .order-history table th {
    font-weight: normal;
    background-color: #EDEDED;
}

#mypage .order-history thead th:first-child {
    border-top-left-radius: 10px;
}

#mypage .order-history thead th:last-child {
    border-top-right-radius: 10px;
}

#mypage .order-history tr td:last-child {
    padding: 10px;
}

#mypage .order-history .sp-none {
    display: table-cell;
}
#mypage .order-history .button_5799cb{
    width: 70%;
}
#mypage .order-history tr {
    border-bottom: 1px solid #ededed;
}
@media screen and (max-width: 980px) {
    #mypage .order-history .sp-display {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    #mypage .order-history th,
    #mypage .order-history td {
        padding: 6px;
        font-size: 0.8rem;
    }

    #mypage .order-history tr td:last-child {
        padding: 0;
    }

    #mypage .order-history .button_5799cb {
        padding: 4px;
    }
}
#mypage .order-history-detail .form-group *{
    color: #707070;
}
#mypage .order-history-detail .order-detail,#mypage .order-history-detail .form-group{
    display: flex;
    margin: auto;
}
#mypage .order-history-detail .order-detail .col-md-10{
    margin-left: 10px;
    width: 100%;
}
#mypage .order-history-detail .order-detail .col-md-2{
    width: 100%;
}
#mypage  .order-history-detail .form-group {
margin: 15px 0;
}
#mypage .order-history-detail .order-detail .form-group:first-of-type{
    margin-right: 40px;
}
#mypage .order-history-detail .card{
    margin-bottom: 40px;

}
#mypage .order-history-detail .green-line{
    display: flex;
    justify-content: space-between;
    align-items: end;
}
#mypage .order-history-detail .green-line .button_5799cb{
    width: 115px;
    height: 30px;
    word-break: keep-all;
    margin: 0;
    line-height: 0;
}
#mypage .order-history-detail .col-md-10{
    width: 70%;
}
#mypage .order-history-detail .col-md-2{
    width: 30%;
}
#mypage  .order-history-detail .order-detail {
    width: fit-content;
    word-break: keep-all;
}
#mypage  .order-history-detail .order-detail .form-group{
    width: 100%;
}
/*オーナー商品成長記録*/
#mypage .growth-record-box{
    padding-bottom: 80px;
    border-left: 3px solid #523F00;
    position: relative;
    box-sizing: content-box;
    padding-left: 30px;
}
#mypage .growth-record-box .day {
    line-height: 0;
    font-weight: bold;
    font-size: 1.6rem;
    color: #EB6A00;
}
#mypage .growth-record-box img {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 30px;
    margin-left: 20px;
}
#mypage .growth-record-box .flex {
    border-top: solid 2px #523F00;
    margin-top: 30px;
    padding-top: 30px
}
#mypage .growth-record-box .day:after {
    content: "・";
    color: #EB6A00;
    font-size: 4rem;
    position: absolute;
    left: -34px;
    top: 0;
}
#mypage .growth-record-box .title{
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}
#mypage .growth-record-box .content{
    line-height: 1.7;
    font-size: 0.9rem;
}
@media screen and (max-width: 600px) {
    #mypage .growth-record-box .flex{
        display: block;
        margin-top: 30px;
        padding-top: 20px;
    }
    #mypage .growth-record-box .m_r_20{
        margin-right: 0;
    }
    #mypage .growth-record-box .flex *{
        width: 100%;
        margin: auto;
    }
    #mypage .growth-record-box .flex .title{
        margin-top: 10px;
    }
}
/*レビュー*/
#mypage .review .form_item,.product_name {
    margin-bottom: 30px;
    color: #333333;
}
#mypage .review #star {
    margin-top: 10px;
}
.evaluation{
    display: flex;
}
.evaluation input[type='radio']{
    display: none;
}
.evaluation label{
    position: relative;
    padding: 10px 10px 0;
    color: #dbdbdb;
    cursor: pointer;
    font-size: 30px;
}
.evaluation label .text{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
    color: #dbdbdb;
}
.evaluation label:hover,
.evaluation label:hover ~ label,
.evaluation input[type='radio']:checked ~ label{
    color: #ffcc00;
}
/*完了画面*/
.complete{
    margin: 0 auto;
    background: var(--gray-color);
    padding: 20px;
}

/*商品検索*/
.product-search .search-box{
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px;
}
.product-search .search-box input{
    border: 1px solid var(--main-theme-color);
    background: #ffffff;
}
.product-search .search-box button{
    background-size: contain;
    background-color: inherit;
    top: 18%;
    right: 3%;
    width: 25px;
    height: 25px;
}
.product-search .button_86ae57{
    width: 100%;
    display: block;
    margin: 0 auto 50px;
    padding: 0;
}
.product-search .search_select_box{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: auto;
}
.product-search .search_select_box .field-title{
    color: #707070;
}
.search_select_box .select_box{
    width: 45%;
    position: relative;
}
.search_select_box .field-title,.product-search-result{
    font-size: 0.85rem;
}
.search_select_box .form_item select {
    padding: 0 10px;
    height: 40px;
    border: none;
    border-radius: 2px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: #707070;
    background: var(--gray-color);
}
.search_select_box .select_box:after{
    position: absolute;
    content: "";
    top: 50%;
    right: 15px;
    width: 8px;
    height: 8px;
    border-top: 2.5px solid #979899;
    border-right: 2.5px solid #979899;
    transform: rotate(135deg);
    border-radius: 1px;
    pointer-events: none;
}
.product-search .tab-selector{
    height: 38px;
    display: flex;
    justify-content: space-between;
}
.product-search .tab-selector .selector{
    background: #6FB552;
    color: #ffffff;
    padding: 10px 40px;
    border-radius: 10px 10px 0 0;
    opacity: 0.5;
    margin-right: 1px;
    width: 33%;
    display: inline-block;
    text-align: center;
}
.product-search .tab-selector .selector:last-of-type{
    margin-right: 0;
}
.product-search .tab-selector .selector.active{
    opacity: 1;
}
.product-search .owner-item-container {
    border-top: 4px solid #6FB552;
    justify-content: space-between;
    padding-top: 10px;
}
.index .product-search .owner-item {
    margin-left: 0;
}
.product-search-result{
    margin-bottom: 15px;
}
@media screen and (min-width: 960px) {
    .product-search .search-box,.product-search .search_select_box,.product-search .button_86ae57{
        width: 80%;
    }
}
@media screen and (max-width: 960px) {
    .product-search .tab-selector .selector {
        padding: 10px;
        font-size: 12px;
    }
}
/*ページネーション*/
.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination li.active{
    color: var(--main-theme-color);
}
.pagination li{
    margin: 0 20px;
    line-height: 1.7;
    color: #6f6f6f;
}
.page-btn {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border: none;
    border-radius: 5px;
    position: relative;
    padding: 18px;
    background: #FAFAFA;
    border: 2px solid #F0F3F5;
}
.page-btn:after{
    position: absolute;
    content: "";
    top: calc(50% - 4px);
    width: 8px;
    height: 8px;
    border-top: 2.5px solid var(--main-theme-color);
    border-right: 2.5px solid var(--main-theme-color);
}
.page-btn.prev:after{
    transform: rotate(-135deg);
    left: calc(50% - 4px);
}
.page-btn.next-btn:after{
    transform: rotate(45deg);
    left: calc(50% - 6px);
}
/*sukuwell制度商品*/
.purchase-custom .flex{
    align-items: center;
}
.purchase-custom .price:not(.owner-item .price){
    font-size: 2rem;
    color: var(--orange-color);
}
.purchase-custom .tag_area{
    width: 100%;
}
.purchase-custom .tag_area .tag_item{
    font-size: 0.8rem;
    padding: 4px 11px;
    margin: 5px;
}
.purchase-custom .producer-information p{
    color: #3B4043;
}
.purchase-custom .producer-information p:first-of-type{
    color: grey;
    font-weight: normal;
    font-size: 0.8rem;
}
.purchase-custom .form_item input{
    width: 80%!important;
    margin-bottom: 0;
}
.purchase-custom .form_item .col-md-3,#purchase .form_item .col-md-3{
    display: none;
}
.purchase-custom .purchase-button{
    width: 66.4%;
}
.purchase-custom .purchase-button.fav-btn{
    color: grey;
    border: 1px solid grey;
    background: #ffffff;
    font-size: 0.9rem;
    width: 59%;
    padding: 8px;
}
.fav-btn:before{
    font-family: "Font Awesome 5 Free";
    content:"\f004";
    margin-right: 5px;
}
.fav-btn#removeFavorite{
    color: #d13838;
    border: 1px solid #d13838;
}
.fav-btn#removeFavorite:before{
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #d13838;
}
#copy-page {
    display: inline-block;
    width: 13%;
    padding: 5px 0;
    font-size: 0.7rem;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    border-radius: 6px;
    background: #626262;
    outline: none;
    font-weight: 500;
    word-break: keep-all;
}
#copy-page:hover {
    cursor: pointer;
    opacity: .7;
}
.share-button{
    justify-content: start;
    flex-wrap: wrap;
    margin-top: 60px;
}
.share-button iframe,.share-button button{
    margin: 0 7px;
}
.fa-solid{
    margin-right: 3px;
}
.tax{
    font-size: 0.7rem;
}
.product-name{
    margin: 10px 0 10px 0;
    font-size: 1.5rem;
    font-weight: bold;
}
.remaining{
    color: #ffffff;
    background: var(--main-theme-color);
    padding: 4px 9px;
}
.remaining.sold-out{
    color: #ffffff;
    background:  #E14D2A;
    padding: 4px 9px;
}
.purchase-custom .purchase-box{
    width: 59%;
    margin: 30px 0;
}
@media screen and (max-width: 960px) {
    .purchase-custom .main-container-pc {
        display: block;
    }
    .main-container-pc .product-details .row div:nth-child(1){
        width: 26%;
        word-break: keep-all;
    }
    .share-button iframe,.share-button button{
        margin: 0 4px;
    }
    .purchase-custom .tag_area{
        margin: 10px 0;
    }
    .pagination {
        width: 95%;
        margin: auto;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .pagination li {
        margin-bottom: 1.5rem;
    }
}
@media screen and (max-width: 600px) {
    #copy-page{
        width: 26%;
        margin-top: 10px
    }
    .product-name {
        margin: 60px 0 10px 0;
        font-size: 1.2rem;
        font-weight: bold;
    }
    .purchase-custom .purchase-button.fav-btn,.purchase-custom .purchase-box{
        width: 100%;
    }
    .purchase-box .m_r_20{
        margin-right: 7px;
    }
    .purchase-custom .purchase-button {
        width: 55%;
    }
}
/*産直商品一覧*/
.owner-item.subscription{
    position: relative;
}
.owner-item.subscription:before{
    position: absolute;
    content: "定期便";
    background: var(--orange-color);
    padding: 6px 10px;
    color: #ffffff;
    z-index: 1;
    top: 0;
    left: 50%;
    width: 70%;
    text-align: center;
    font-size: 0.9rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
/*産直商品レビュー*/
.review-wrapper{
    background: #fafafa;
    margin: 80px 0;
    border-radius: 10px;
    padding: 20px 40px;
    overflow-y: scroll;
}
.review-container{
    border-bottom: 1px solid var(--form-border);
    color: grey;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.review-container li{
    margin-bottom: 7px;
}
.review-container .review-title{
    color: var(--main-theme-color);
    font-size: 1.2rem;
}
.review-container .user-name,.review-container .review-date{
    font-size: 0.8rem;
}
.review-container .review-content{
    line-height: 1.7;
    font-size: 0.9rem;
}
.evaluation .star.active{
    color: rgb(255, 204, 0);
}
.evaluation .star{
    color: #dbdbdb;
    font-size: 1rem;
    margin: 2px;
}
.review-wrapper .view-more-button{
    margin: 40px auto 0;
    display: block;
    width: fit-content;
}
@media screen and (max-width: 600px) {
    .review-wrapper{
        padding: 20px;
    }
}
.review-wrapper::-webkit-scrollbar {
    width: 5px;
    opcaity: 0.3;
}
.review-wrapper::-webkit-scrollbar-thumb {
    background-color: #d4d4d4;
    border-radius: 5px;
    padding: 10px;
}
.review-wrapper::-webkit-scrollbar-track {
    background-color: #fafafa;
    padding: 2px;
}
/*定期便*/
.subscription-price{
    font-size: 0.9rem;
}

/*生産者*/
.producer-section .owner-item-container{
    width: 100%;
}
.follow-button{
    color: var(--main-theme-color);
    border: 2px solid var(--main-theme-color);
    border-radius: 80px;
    padding: 10px 40px;
    margin-top: 10px;
}
#unfollow.follow-button{
    background: var(--main-theme-color);
    color: #ffffff;
}
.producer-custom .share-button{
    justify-content: flex-end;
}
.producer-custom .producer-section{
    margin-top: 100px;
}
.blog-list .flex{
    justify-content: space-between;
}
.blog-list .flex .blog-image{
    width: 35%;
}
.blog-list .flex .blog-image img{
    width: 100%;
}
.blog-list .flex .blog-text{
    width: 60%;
}
.blog-list .flex .blog-text p{
    font-size: 0.9rem;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333333;
}
.blog-list .flex .blog-text p:first-of-type{
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.blog-list .flex .blog-text p:last-of-type{
    font-size: 0.8rem;
    margin-top: 10px;
    color: grey;
    text-align: right;
}
@media screen and (max-width: 960px) {
    .producer-section .owner-title .underbar{
        margin-top: 20px;
    }
}
@media screen and (max-width: 600px) {
    .movie_wrapper iframe {
        width: 100%;
        height: 100%;
        margin: auto;
    }
    .movie_wrapper{
        width: 100%;
        height: 185px;
    }
    .blog-list .flex{
        display:block;
    }
    .blog-list .flex .blog-text,.blog-list .flex .blog-image {
        width: 100%;
        margin-top: 20px;
    }
}
/*特集*/
#feature .feature-list{
    flex-wrap: wrap;
    margin-bottom: 80px;
}
#feature .feature-list a{
    width: 30%;
    margin: 2% 5% 0 0;
    display: block;
}
#feature .feature-list a:nth-of-type(3n){
    margin: 20px 0;
}
#feature .feature-list ul li{
    color: #333333;
}
#feature .feature-list ul li img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}
#feature .feature-image{
    width: 100%; /*指摘されているので100%にしています*/
    margin: 0 auto 30px;
}
#feature .feature-image-sub{
    width: 50%;
    margin: 0 auto;
}
#feature .feature-image-sub img{
    width: 100%;
}
.feature-content p{
    font-size: 0.9rem;
    color: #333333;
    letter-spacing: 0.1em;
    line-height: 1.7;
    padding: 10px ;
}
.coupon_code p{
    font-size: 20px;
}
.coupon_code{
    margin: auto;
    text-align: center;
    width: 50%;
    margin: 40px auto;
    border: 1px solid var(--orange-color);
    border-radius: 7px;
    padding: 0;
    font-weight: bolder;
}
.coupon_code p:first-of-type {
    background: var(--orange-color);
    color: #ffffff;
    text-align: center;
}

.coupon_code p:last-of-type{
    text-align: center;
    margin: auto;
    color: var(--orange-color);
    font-size: 20px;
}
#feature .feature-image > img{
    width: 100%;
}
@media screen and (max-width: 600px) {
    #feature .feature-list a,#feature .feature-list a:nth-of-type(3n) {
        width: 100%;
        margin: 0 0 8% 0;
    }
    .coupon_code{
        width: 100%;
    }
    #feature .feature-image{
        width: 100%;
    }
}

/*サービス説明*/
.text,.next,.next2,.next3{
    margin-bottom: 100px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #333333;
}
.service .text{
    font-size: 1rem;
    color: #333333;
    text-align: center;
}
.service .p2,.static .p2{
    color: var(--main-theme-color);
    font-weight: 600;
    text-align: left;
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.service .p3{
    font-size: 0.85rem;
    text-align: left;
}
.service .p-txt-ue.txt,.service .p-txt-shita.txt{
    text-align: center;
}
.yu-ul li:first-of-type{
    height: fit-content;
}
@media screen and (max-width: 600px) {
    .service .text {
        font-size: 0.9rem;
    }
    #yu .w_30{
        width: 100%;
    }
    #yu .img-caption{
        font-size: 0.75rem;
    }
}
/*静的ページ*/
.slogan{
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.9;
    letter-spacing: 0.03em;
    color: #295e00;
    font-size: 1.1rem;
}
.section-bar{
    color: var(--main-theme-color);
    background: var(--main-theme-color);
    border-radius: 10px;
    margin: 2.5rem 0;
}
.static {
    letter-spacing: 0.03em;
    color: #333333;
    text-align: left;
    margin-bottom: 100px;
}
.static .top{
    margin-bottom: 3rem;
}
.main-container .static .p2{
    margin-bottom: 2rem;
    font-size: 1.4rem;
}
.main-container .static p.sub{
    font-size: 1rem;
}
.main-container .static p.main{
    font-size: 1.2rem;
}
.service img{
    border-radius: 10px;
    object-fit: cover;
    margin: 10px
}
.static .flex img{
    width: 30%;
    border-radius: 10px;
    object-fit: cover;
    margin: 10px
}
.static .flex.col-2 img,.static .flex.col-2 .flex-box{
    width: 48%;
    margin: 0;
}
.static .flex .flex-box{
    width: 30%;
    margin: 0 10px;
}
.static .flex .flex-box img{
    width: 100%;
    margin: 0 0 10px 0;
}
.static .flex{
    justify-content: space-between;
    align-items: baseline;
    margin-top: 20px;
    flex-wrap: wrap;
}
.static .flex.text-image img {
    margin: 0;
}
.section_middle{
    margin: 4rem 0;
    text-align: center;
}
.section_middle p:last-of-type{
    font-size: 0.9rem;
}
.section_bottom{
    padding: 60px;
    border-radius: 10px;
    background: #FCFAE7;
}
.static .flex .reccomend{
    width: 48%;
    background: rgba(255,255,255,0.7);
    padding: 1rem;
}
.static .flex .reccomend img{
    width: 100%;
    height: auto;
    margin: 10px  0;
}
.flex .flex.text-image .reccomend{
    padding: 0;
}
.static .farmer span {
    font-size: 0.75rem;
    margin-left: 20px;
    color: #6E4C00;
}
.static .text-bottom{
    background-image: url(../img/front/static/bottom.jpg);
    background-size: cover;
    padding-bottom: 60px;
    background-repeat: no-repeat;
    margin-top: 60px;
    background-position: bottom;
}
.static .text-bottom.with-btn{
    padding-bottom: 7rem;
    background-size: contain;
}
.static .text-bottom p{
    margin: 40px auto;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--main-theme-color);
}
.static .flex.text-image{
    justify-content: space-between;
    align-items: center;
}
.static .flex.text-image img{
    width: 100%;
}
.static_btn_orange{
    background: var(--orange-color);
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 50px;
}
.top .static_btn_orange {
    margin: 0 auto 20px;
    display: block;
    text-align: center;
    width: 40%;
}
#yu .service .next-img ,#yu .service .next2-img{
    width: 90%;
}
.static .section_bottom .proposal{
    padding: 20px;
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
}
.section_bottom.proposal-container{
    padding: 30px;
    margin-top: 80px;
}
.staff p:first-of-type{
    font-weight: 600;
    color: var(--orange-color);
    margin-bottom: 10px;
}
.staff p:last-of-type{
    font-size: 0.9rem;
}
@media screen and (max-width: 600px) {
    .text, #yu .service .next,.next2,.next3{
        margin-bottom: 100px;
    }
    #yu .next2-list .txt{
        margin-top: 10px;
        font-size: 0.8rem;
    }
    .slogan{
        font-size: 1rem;
    }
    .main-container .static .p2 {
        font-size: 1.2rem;
    }
    .main-container .static p.main {
        font-size: 1.1rem;
    }
    .main-container .static p.sub {
        font-size: 0.9rem;
    }
    .static .flex img {
        width: 32%;
    }
    .section_bottom {
        padding: 20px;
    }
    .static .flex .reccomend{
        width: 100%;
        margin-bottom: 20px;
    }
    .static .flex .reccomend:last-of-type{
        margin-bottom: 0;
    }
    .static .farmer span{
        display: block;
        margin-left: 0;
    }
    .static .text-bottom{
        padding-bottom: 10px;
        background-size: contain;
    }
    .static .flex .flex-box{
        width: 100%;
        margin: 20px 0;
    }
    .static .flex .w_45 {
        width: 100%;
        margin: 0 0 10px 0;
    }
    .static .flex img {
        margin: 0;
    }
    .static .flex {
        justify-content: space-between;
    }
    .static .text-bottom.with-btn{
        padding-bottom: 4rem;
    }
    .static_btn_orange,.top .static_btn_orange{
        width: 100%;
    }
    .section_bottom.proposal-container{
        padding: 20px;
    }
    .static .proposal .flex.col-2 .flex-box{
        width: 100%;
        margin-bottom: 10px;
    }
    .static .proposal .flex .reccomend{
        padding: 0;
    }
    .flex.staff{
        display: block;
    }
    .static .flex.col-2.staff .flex-box{
        width: 100%;
        margin-bottom: 20px;
    }
}
/*お知らせ*/
.announce-list li{
    border-bottom: 1px solid var(--form-border);
    line-height: 1.8;
    font-size: 0.9rem;
    color: #333333;
    position: relative;
}
.announce-list li:after{
    position: absolute;
    content: "";
    top: 3rem;
    right: 1rem;
    width: 8px;
    height: 8px;
    border-top: 2.5px solid var(--main-theme-color);
    border-right: 2.5px solid var(--main-theme-color);
    transform: rotate(45deg);
}
.announce-list a{
    display: block;
    box-sizing: content-box;
    padding: 1rem;
}
.announce-custom .news-text{
    color: #444444;
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0.01em;
}
.url-info{
    color: var(--orange-color);
    font-size: 0.9rem;
    display: block;
    margin: 30px 0;
    border-top: 1px solid #eeeeee;
    padding: 20px 0 0 18px;
    position: relative;
    font-weight: 600;
}
.url-info:before{
    position: absolute;
    content: "";
    top: 68%;
    left: 0;
    width: 8px;
    height: 8px;
    border-top: 2.5px solid var(--orange-color);
    border-right: 2.5px solid var(--orange-color);
    transform: rotate(45deg);
}
.announce-custom .subject p{
    font-size: 2rem;
}

h2 strong.long-title {
    word-break: keep-all;
    white-space: nowrap;
}

@media screen and (max-width: 600px) {
    .announce-custom .subject p {
        font-size: 1.3rem;
    }
    .announce-custom .news-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    h2 strong.long-title {
        word-break: break-word;
        white-space: break-spaces;
        padding: 0;
    }
}
.mb_80{
    margin-bottom: 80px;
}

.product-name .plan {
    padding: 6px 8px;
    font-size: 1.1rem;
    background-color: #ffd900;
    margin-right: 10px;
}

.product-name {
    line-height:1.6;
}

/* プライバシーポリシー用テーブル */
.privacy-policy-table {
    margin-bottom: 20px;
}

/* プライバシーポリシー用テーブル trタグ */
.privacy-policy-table tr {
    boder-collapse: collapse;
    border: black 1px solid;
}

/* プライバシーポリシー用テーブル thタグ */
.privacy-policy-table th {
    boder-collapse: collapse;
    border: black 1px solid;
    padding-left: 5px;
}

/* プライバシーポリシー用テーブル tdタグ */
.privacy-policy-table td {
    boder-collapse: collapse;
    border: black 1px solid;
    padding-left: 5px;
}

/* プライバシーポリシー用テーブル thタグ 最初の子供のみ幅指定 */
.privacy-policy-table th:nth-child(1) {
    width: 190px;
}

/* プライバシーポリシー用テーブル ulタグ */
.privacy-policy-table ul{
    padding-left: 20px;
}