@charset "UTF-8";
/**************************
Compass Text Replacement
*/

/**************************
Inline List
*/

/**************************
Inline Block List
*/

/**************************
horizontal-list
*/

/**************************
Bullets
*/

/* simple clearfix */

/**************************
@mixin for sprite
*/

html {
    font-size: 100%;
}

select, input {
    font-size: 16px;
}

.text_frame input, .textarea_frame textarea {
    font-size: 1rem;
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Utility - Cosmetic

ユーティリティー設定。
このサイト専用というわけでもない共通設定。

<div class="_h3">.sp</div>
PCの時だけ表示される。

<div class="_h3">.sp_block</div>
SPの時だけ、ブロック要素になる。

<div class="_h3">.tel_link</div>
SPの時だけ、リンクになる。(クリックで電話するリンク)

*/

.sp_none, #body .sp_none {
    display: none !important;
}

#body .tel_link, #body .tel_link:hover {
    text-decoration: underline;
    color: #920783;
}

/* <div class="_h3">横スクロールできる table</div>

responsive-tables.js と組み合わせないと効果が生まれない。
左の固定部分の横幅を変えたい場合は、CSSを追記する必要がある。
.responsive_table_area で包んで、
table.responsive とするのが必須の仕様。

	<div class="responsive_table_area">
		<table class="responsive">
			<tbody>
				<tr>
					<th>テキスト</th>
					<td>テキスト</td>
				</tr>
				<tr>
					<th>テキスト</th>
					<td>テキスト</td>
				</tr>
				<tr>
					<th>テキスト</th>
					<td>テキスト</td>
				</tr>
			</tbody>
		</table>
	</div> */

.responsive_table_area {
    position: relative;
    top: 0;
    left: 0;
    clear: both;
    margin-bottom: 2em;
}

.root .responsive_table_area table {
    margin-bottom: 0;
}

.responsive_table_mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/icon_swipe.png") center center no-repeat transparent;
    background-size: auto 90px;
    z-index: 102;
    cursor: pointer;
}

.responsive_table_mask.shadow {
    background-image: none;
    background: #666;
    opacity: 0.5;
    z-index: 101;
}

.responsive_table_area th:first-child {
    max-width: 125px;
    min-width: 125px;
    width: 125px;
    box-sizing: border-box;
}

.responsive_table_area .table-wrapper .pinned {
    max-width: 126px;
    min-width: 126px;
    width: 126px;
}

.responsive_table_area .table-wrapper .scrollable {
    padding-left: 125px;
}

.responsive_table_area .table-wrapper .scrollable>table {
    margin-left: -125px;
}

.responsive_table_area td {
    min-width: 70px;
}

.scrollable {
    -webkit-overflow-scrolling: touch;
}

@media only screen and (max-width: 767px) {
    .responsive_table_area table.responsive th:first-child, .responsive_table_area table.responsive td:first-child, .responsive_table_area table.responsive td:first-child, .responsive_table_area table.responsive.pinned td {
        display: table-cell;
    }
}

.responsive_table_area-all .table-wrapper .pinned {
    display: none;
}

.responsive_table_area-all .table-wrapper .scrollable {
    padding-left: 0;
}

.responsive_table_area-all .table-wrapper .scrollable>table {
    margin-left: 0;
}

.responsive_table_area-all .table-wrapper .scrollable th:first-child {
    max-width: none;
    min-width: initial;
}

/* #main_column .responsive_table_area {
	position: relative;
	top: 0;
	left: 0;
	clear: both;
	overflow: hidden;
}

#main_column .responsive_table_area + .table,
#main_column .responsive_table_area + .bordered_table,
#main_column .responsive_table_area + .responsive_table_area {
	margin-top: 1em;
}

#main_column .responsive_table_mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url("/common/img/icon_swipe.png") center center no-repeat transparent;
	background-size: auto 90px;
	z-index: 4;
	cursor: pointer;
}

#main_column .responsive_table_mask.shadow {
	background-image: none;
	background: #666;
	opacity: 0.5;
	z-index: 3;
}

#main_column .responsive_table_area .table-wrapper {
	border-right: none;
	margin-bottom: 0;
}

#main_column .responsive_table_area .table-wrapper .pinned {
	display: none;
}

#main_column .responsive_table_area .table-wrapper .scrollable {
	padding-left: 0;
}

#main_column .responsive_table_area .table-wrapper .scrollable > table {
	margin-left: 0px;
}

#main_column .responsive_table_area td {
	min-width: 70px;
}

#main_column .responsive_table .responsive {
	overflow: scroll;
}

#main_column .scrollable {
	-webkit-overflow-scrolling: touch;
}

@media only screen and (max-width: 767px) {
	#main_column .responsive_table_area table.responsive th:first-child,
	#main_column .responsive_table_area table.responsive td:first-child,
	#main_column .responsive_table_area table.responsive td:first-child,
	#main_column .responsive_table_area table.responsive.pinned td {
		display: table-cell;
	}
}

#main_column .responsive_table_area-store .pinned {
	display: none;
}

#main_column .responsive_table_area-store .scroolable {
	padding-left: 0;
}
.responsive_table_area + * {
	margin-top: 0.5em;
} */

#main_column table.sp_table {
    width: 100%;
    margin-bottom: 1em;
    border-collapse: collapse;
    border-spacing: 0;
}

#main_column table.sp_table tbody, #main_column table.sp_table tr, #main_column table.sp_table th, #main_column table.sp_table td {
    display: block;
}

/***********************************************************************
header
 ***********************************************************************
*/

#body {
    padding-top: 49px;
}

.header {
    position: fixed;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 49px;
    background: #fff;
    border-bottom: 1px solid #efefef;
    box-sizing: border-box;
}

.header .inner {
    height: 49px;
    padding: 8px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.header h1 a {
    display: inline-block;
}

.header h1 img {
    vertical-align: bottom;
}

/***********************************************************************
footer
 ***********************************************************************
*/

#footer_banner_area {
    padding: 20px 0 56px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#footer_banner_area ul {
    max-width: 290px;
    font-size: 0;
    margin: 0 auto;
}

#footer_banner_area li {
    display: inline-block;
    width: 140px;
}

#footer_banner_area li:nth-child(2n) {
    margin-left: 10px;
}

#footer_banner_area li:nth-child(n+3) {
    margin-top: 10px;
}

#footer_banner_area li img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

#footer_infomation_area {
    padding-bottom: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#footer_infomation_area .navi_area ul+ul, #footer_infomation_area .navi_area li+li {
    margin-top: 7px;
}

#footer_infomation_area .info_area__logo {
    display: inline-block;
    margin-bottom: 20px;
}

#footer_infomation_area .info_area__list {
    display: block;
    margin-bottom: 14px;
}

#footer_infomation_area .info_area__list>li+li {
    margin-top: 4px;
}

/***********************************************************************
main_area
 ***********************************************************************
*/

#main_column h3 .inner {
    line-height: 1.2;
    display: block;
}

#pankuzu_area {
    padding: 10px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#pankuzu_area li {
    display: inline;
}

#main_column img {
    max-width: 100%;
    height: auto;
}

#main_column ul, #main_column ol, #main_column .link_content {
    margin-left: 0;
}

.main_box_content {
    padding: 10px 15px;
}

#main_column .image_area {
    text-align: center;
}

#main_column .image_area+.text_area, #main_column .text_area+.image_area {
    margin-top: 1em;
}

#main_column .pc_left, #main_column .pc_right {
    float: none;
}

#main_column .ol_list .line {
    margin-left: 0;
}

#main_column .shipping_calendar {
    width: 100%;
}

#main_column .shipping_calendar td {
    font-size: 13px;
    padding: 0.5em 0;
}

#main_column .shipping_calendar td.cell {
    width: 4%;
    min-width: 4%;
}

/***********************************************************************
drawer
 ***********************************************************************
*/

.open_menu {
    position: absolute;
    top: 11px;
    right: 18px;
    z-index: 2;
    width: 24px;
    height: 24px;
    text-indent: 100%;
    background: url(/common/img/btn_hamburger_menu.png) no-repeat;
    background-size: 24px auto;
    overflow: hidden;
    white-space: nowrap;
    transition: transform .2s ease-out;
}

#drawer {
    visibility: hidden;
    z-index: 3;
    width: 100%;
}

#drawer .container {
    padding: 0;
}

#drawer a {
    color: #111;
}

#drawer .drawer__head h2 {
    font-size: 1rem;
}

#drawer .drawer__head a {
    height: 50px;
    font-weight: normal;
    text-align: center;
    color: #111;
    line-height: 50px;
    background-color: transparent;
    padding: 0;
    box-sizing: border-box;
}

#drawer.drawer-show {
    visibility: visible;
}

#drawer.mm-menu.mm-offcanvas {
    max-width: 100%;
}

#drawer .mm-listview>li.mm-selected>a:not(.mm-next), #drawer .mm-listview>li.mm-selected>span {
    background-color: transparent;
}

#drawer .mm-navbar-top {
    height: 50px;
    border-bottom: 0 none;
    padding-top: 0;
    padding-bottom: 0;
}

#drawer .mm-panels {
    background-color: #fff;
    padding-top: 0;
}

#drawer .mm-panels>.mm-panel.mm-hasnavbar {
    padding-top: 0;
}

#drawer .mm-panels>.mm-panel::before {
    height: 0;
}

#drawer .mm-panels .mm-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #f8eefd;
    margin-right: 0;
    padding-top: 1em;
    box-sizing: border-box;
}

#drawer .mm-panels .mm-navbar .mm-prev {
    top: 0;
    height: 49px;
}

#drawer .mm-panels .mm-navbar .mm-prev::before {
    top: 0;
}

#drawer .mm-panels .mm-navbar .mm-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 49px;
    font-size: 1rem;
    font-weight: normal;
    color: #231815;
    line-height: 49px;
    padding: 0;
    box-sizing: border-box;
}

#drawer .mm-panels .mm-navbar+.mm-listview {
    margin-top: 50px;
}

#drawer #mm-0 .mm-navbar+.mm-listview {
    margin-top: 0;
}

#drawer #mm-0>.mm-navbar {
    display: none;
}

#drawer .gnav__title {
    display: none;
}

#drawer li {
    min-height: 60px;
}

#drawer li:first-child {
    position: relative;
    top: 0;
    left: 0;
    min-height: 50px;
    line-height: 50px;
}

#drawer li:first-child .title_text {
    text-indent: -119988px;
    overflow: hidden;
    text-align: left;
    display: block;
    position: relative;
    top: 17px;
    left: 0;
    width: 50px;
    height: 15px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

#drawer li:first-child .title_text::before {
    top: 0;
    transform: initial;
}

#drawer li:first-child .drawer__a, #drawer li:first-child a {
    min-height: 50px;
}

#drawer li:not(.mm-divider)::after {
    border-bottom: 1px solid #f8eefd;
}

#drawer li.li-bottom {
    min-height: inherit;
    padding: 20px 15px;
}

#drawer li.li-bottom::after {
    display: none;
}

#drawer li.li-bottom .button {
    display: table;
    width: 100%;
    padding-left: 10px;
}

#drawer li.li-bottom .button-in_drawer {
    height: 50px;
    font-size: 0.813rem;
    text-align: center;
}

#drawer a, #drawer span {
    height: 60px;
    font-size: 1rem;
    color: #231815;
    line-height: 34px;
    background-color: #fff;
    margin-right: 0;
    margin-left: 0;
    padding-top: 14px;
    padding-bottom: 14px;
    box-sizing: border-box;
}

#drawer a:hover, #drawer span:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: 0.2s opacity;
}

#drawer a.active, #drawer span.active {
    font-weight: bold;
    background: #d8f0ff;
}

#drawer a.mm-next, #drawer span.mm-next {
    background: #920783;
}

#drawer a .image, #drawer span .image {
    display: none;
}

#drawer a.drawer__a-sub, #drawer span.drawer__a-sub {
    background-color: #f7f7f7;
}

#drawer li .mm-next {
    height: 59px;
    box-sizing: border-box;
}

#drawer li .mm-next::before {
    display: none;
}

#drawer li .mm-next::after {
    width: 12px;
    height: 12px;
    border-color: #fff;
}

#drawer .sub_cate__sub {
    border-radius: 0;
}

#drawer .sub_cate__sub_wrapper {
    padding: 0;
    width: 100%;
}

#drawer .gnav__block-search {
    padding: 0 16px;
    box-sizing: border-box;
}

#drawer .gnav__block-search::after {
    display: none;
}

.mm-opening #mm-blocker {
    z-index: 3;
    background: #000 none repeat scroll 0 0;
    transition: background 1s ease 0.2s;
    opacity: 0.2;
}

html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-100%, 0);
    -moz-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
}

#drawer .close_menu {
    position: absolute;
    top: 0;
    left: 0;
    text-align: left;
    text-indent: -9999px;
    width: 50px;
    height: 50px;
    padding: 0;
}

#drawer .close_menu::before {
    content: "";
    display: block;
    position: absolute;
    top: 17px;
    left: 20px;
    width: 18px;
    height: 18px;
    background-image: url(/common/img/btn_hamburger_menu_close.png);
    background-size: 18px auto;
}

/***********************************************************************
トップページ
 ***********************************************************************
*/

.index #body {
    padding-top: 49px;
    background-size: 3px auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.index #index_main {
    background: url('/top/img/main_image_sp.png') center 0 no-repeat transparent;
    background-size: 375px auto;
    /*background-size: 100% auto;*/
    /*background-size: 640px auto;*/
    padding-top: 188px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.index #info_area, .index #recommend_area, .index #local_infomation_area, .index #helpful_infomation_area {
    padding: 30px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.index .hokkaido_mark {
    display: block;
    text-align: center;
    margin-top: -38px;
    margin-bottom: -45px;
}

.index .hokkaido_mark img {}

/*.index #info_area {
	margin-top: 10px;
}*/

#info_area .content_area li>.link {
    background: url("../img/purple_vector.png") 0 0.5em no-repeat transparent;
    padding-left: 1em;
    /*padding-right: 1em;*/
}

.index #news_area {
    margin-bottom: 2em;
}

.index #news_area, .index #important_area {}

.index #news_area .title, .index #important_area .title {
    display: block;
    position: relative;
    font-size: 0;
    width: 100%;
    min-height: 49px;
}

.index #news_area .content_area>li, .index #important_area .content_area>li {
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.index #news_area li>.date {
    display: block;
}

#news_area li>.thumb,
#news_area li>.link
 {
    display: inline-block;
    vertical-align: top;
}

#news_area li>.thumb {
    width: 82px;
	position: absolute;
	top: 10px;
	left: 10px;
}

.index #news_area li>.link,
.news_content #news_area li>.link,
.hogar_content #news_area li>.link,
.alock_content #news_area li>.link
 {
    width: calc(100% - 80px);
    padding-left: 26px;
    background-position: 12px 6px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	margin-left: 80px;
}

.index #news_area .title {
    height: 49px;
}

#info_area .news_area_link,
#info_area .important_area_link {
    display: block;
    text-align: center;
    margin-top: 1em;
}

#info_area .news_area_link a,
#info_area .important_area_link a {
    display: inline-block;
}

#news_area .content_area>li,
#info_area .content_area>li {
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	position: relative;
	min-height: 82px;
	margin: 0 auto;
}
.index #important_area .content_area>li,
.important_contents #news_area .content_area>li {
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	margin: 0 auto;
	min-height: auto;
}
#info_area li .date {
    display: block;
}
.index #important_area li .date,
.important_contents #info_area li .date {
    display: block;
	margin-left: 0;
}
#info_areaa li .thumb {
    width: 82px;
	position: absolute;
	top: 10px;
	left: 5px;
}


.index #recommend_area .title_area,
.index #local_infomation_area .title_area,
.index #helpful_infomation_area .title_area {
    display: block;
    height: 70px;
    background-position: center center;
    margin-bottom: 15px;
}

.index #recommend_area .content_area {
    display: flex;
    flex-wrap: wrap;
    /*text-align: center;*/
}

.index #recommend_area .content_area li {
    display: block;
    width: 50%;
    box-sizing: border-box;
    padding: 5px;
    /*text-align: center;*/
    margin-bottom: 1em;
}

#recommend_area .content_area a {
    display: block;
}

#recommend_area .content_area a img {
    width: 100%;
}

#recommend_area .content_area .title a {
    display: inline-block;
}

.index #recommend_area .content_area li>a + span.content {
	display: none;
}

.index #local_infomation_area .content_area li {
    display: block;
}

.index #local_infomation_area .content_area li#local_info_map_area {
    text-align: center;
}

.index #local_infomation_area .content_area li#local_info_map_area img {
    margin-bottom: 1em;
}

.index #local_infomation_area .content_area li:nth-child(n+3) {
    margin-top: 1em;
}

.index #recommend_area .image {
    text-align: center;
}

.index #local_infomation_area .title {
    display: block;
    margin-bottom: 4px;
}

.index #local_infomation_area .title img {
    display: inline-block;
    vertical-align: middle;
}

.index #local_infomation_area .title .local_info_num {
    margin-right: 0.5em;
}

.index #local_infomation_area .title .local_info_num img {
    margin-top: 2px;
}

.index #helpful_infomation_area .content_area {
    display: flex;
    flex-wrap: wrap;
}

.index #helpful_infomation_area .content_area>li {
    display: block;
    text-align: center;
    width: 50%;
    box-sizing: border-box;
    padding: 5px;
}

.index #helpful_infomation_area .content_area a {
    display: inline-block;
    background-color: #fff;
}

.index #helpful_infomation_area .content_area img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

#main_column .sp_column2 {
    width: 100%;
    margin-left: 0;
    /*padding: 0 8px;*/
    overflow: hidden;
    /*clear: both;*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#main_column .sp_column2_box {
    display: block;
    width: 50%;
    box-sizing: border-box;
    float: left;
    margin: 0 0 10px 0;
    padding: 0 10px 0 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#main_column .sp_column2 .sp_column2_box:nth-child(2n) {
    padding-right: 0;
}

#main_column .sp_column2.hogar_product_list .sp_column2_box {
	height: 370px;
}

#main_column .column2_box img {
    max-width: 100%;
    height: auto;
}

#main_column .column2_box img,
#main_column .column3_box img,
#main_column .column4_box img {
    display: block;
    margin: 0 auto;
}

#main_column table.farm_recruit .cap,
#ja_youth_man_table .cap,
#main_column .download_table .cap,
#main_column .hogar_table .head {
    width: 100%;
    box-sizing: border-box;
}

.note {
    margin: 0.5em auto;
}

#main_column .processed_box .purchase {
    position: relative;
    text-align: center;
}

#main_column .hogar_image_list {
    float: none;
}


/***********************************************************************
追記
 ***********************************************************************
*/

#body .jyf_slider {
    width: 100%;
    box-sizing: border-box;
}

.flexslider {
    box-sizing: border-box;
}

#info_area.sitemap_list .sub1, #info_area.sitemap_list .sub3 {
    margin: 0.3em 1em;
    font-size: 100%;
}

#info_area.sitemap_list .sub4 {
    margin: 0.3em 2em;
    padding:
}

#info_area.sitemap_list .left_bundle, #info_area.sitemap_list .right_bundle {
    width: 100%;
    float: none;
}
#info_area.sitemap_list .content_area>li {
    padding: 0;
	min-height: 0;
}
#info_area.sitemap_list .content_area>li:not(.sub1) {
    padding-bottom: 10px;
}

#info_area.sitemap_list ul.content_area.no_border {
    border-bottom: 1px solid rgb(242, 240, 240);
}

#main_column table.store_table * {
	border-collapse: collapse;
	border-spacing: 0;
}
#main_column table.store_table tr {
	border-top: 0;
	border-bottom: 0;
}
#main_column table.store_table td {
    border-top: 0;
	border-bottom: 0;
}
#main_column table.store_table .cap.store_table_title {
    margin: 0 0 0;
}
#main_column table.store_table .cap {
	border-top: 1px solid rgb(223, 222, 222);
	border-bottom: 1px solid rgb(223, 222, 222);
}

#main_column .store_icon_list {
    display: block;
}
#main_column .store_icon_list > li {
    display: block;
}
#main_column .store_table tr {
    position: relative;
}
#main_column .store_table .cell_detail,
#main_column .store_table .cell_map {
    height: 1em;
}
#main_column .store_btn {
	position: absolute;
	bottom: 10px;
	margin: 2px 5px;
}
#main_column .cell_detail .store_btn {
	left: 50%;
}
#main_column .cell_map .store_btn {
	right: 50%;
}

iframe.em_youtube {
	height: 300px;
}

p.product_index_list_text {
  max-width: 400px;
}
.product_index_list_text:after {
  width: 40%;
}

/* #info_area .content_area>li, .index #important_area .content_area>li {
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	position: relative;
	min-height: 82px;
}
#info_area li>.date {
    display: block;
	margin-left: 90px;
}
#info_areaa li .thumb {
    width: 82px;
	position: absolute;
	top: 10px;
	left: 5px;
}
#info_area li>.link {
    width: 100%;
    padding-left: 26px;
    background-position: 12px 6px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	padding-left: 90px;
} */
