/*------------------------------------------------------------------------------

Theme Name: ナチュラルグレースコラム専用Thema
Author: Shimizu [ bran-new-days.com ]
Description: 2022/9/21

------------------------------------------------------------------------------*/

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

 全体 style

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

/* font-family: "Herr Von Muellerhoff", cursive; */
@import url('https://fonts.googleapis.com/css2?family=Herr+Von+Muellerhoff&display=swap');

/* font-family: "Noto Serif JP", serif; */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

/* font-family: "Noto Sans JP", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
	--color-text         : #333;
	--color-body         : #FFF;
	--color-bg-green     : #e1ede9;
	--color-bg-light     : #f9f8f2;
	--color-bg-beige     : #ebe6d9;
	--color-bg-orange    : #faf2f2;
	--color-bg-orange2   : #f3d0b8;

	--color-primary      : #e16a1a;
	--color-secondary    : #458f21;

	--color-orange       : #ff9900;
	--color-green        : #628762;
	--color-dgreen       : #336600;
	--color-hgreen       : #456945;
	--color-mos          : #8aa374;
	--color-lred         : #cc6666;
	--color-dred         : #b90000;
	--color-brown        : #6a460e;

	--color-white        : #FFF;
	--color-black        : #000;
	--color-gray-100     : #EEE;
	--color-gray-200     : #CCC;
	--color-gray-300     : #999;
	--color-gray-600     : #666;
	--color-gray-700     : #414141;
	--color-gray-800     : #333;
}

/* -----------------------------------------------------------------

  reset & base setting

----------------------------------------------------------------- */
* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}
html {
	overflow-y: scroll;
}
table, pre, code, select, input, textarea, kbd, var, ins, del, samp, h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}
address, cite, dfn, em, var {
	font-style: normal;
}
img {
	border: none;
	vertical-align: bottom;
	line-height: 1;
}
table {
	border-spacing: 0;
	border-collapse: collapse;
}
ul, ol, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
abbr, acronym {
	border: 0;
	font-variant: normal;
}
form label {
	cursor: pointer;
}
select option {
	padding: 0 5px;
}
input, textarea {
	margin: 1px;
	padding: 2px;
	line-height: 1;
}
textarea {
	overflow: auto;
}
input, button, textarea, select, optgroup, option {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}
a {
	cursor: pointer;
}
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], input[type="time"], input[type="week"], input[type="month"], input[type="search"], input[type="button"], input[type="submit"], input[type="reset"], button, textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}
textarea {
	resize: vertical;
}
select::-ms-expand {
	display: none;
}
[hidden] {
	display: none;
}
main, article, aside, header, canvas, details, figcaption, figure, footer, nav, section, summary {
	display: block;
}
html {
	font-size: 16px;
}
body {
	overflow: hidden;
	position: relative;
	left: 0;
	word-wrap: break-word;
	color: var(--color-text);
	font-size: 1rem;
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	line-height: 1.6;
	background-color: var(--color-body);
	background-attachment: fixed;
}
a {
	color: var(--color-text);
	text-decoration: none;
}
a:hover {
	color: var(--color-secondary);
	text-decoration: none;
}
a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
}
.font_gothic {
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
.font_mincho {
	font-family: 'Noto Serif JP', '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
}
video, object {
	display: block;
	max-width: 100%;
	height: auto;
	border: none;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: bottom;
}
.vibtn {
	position: absolute;
	visibility: hidden;
}

/* -------------------------------------------------------------------------------

 header

------------------------------------------------------------------------------- */
header {
	position: relative;
}
.header__inner {
	position: relative;
	width: 100%;
	background-color: var(--color-white);
}
.header__inner a {
	text-decoration: none;
}
.header__headline {
	padding: 10px;
	border-bottom: 1px solid var(--color-gray-100);
	text-align: center;
}
.header__headline--campaign {
	background-color: var(--color-dred);
	color: #ffff00;
}
.header__body {
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	padding: 8px 10px 2px;
	margin: 0 auto;
}

/* logo */
header .h-logo {
	width: 280px;
	max-width: 35%;
	margin-right: 2em;
}
header .h-logo a {
	display: block;
}
header .h-logo img {
	display: block;
}

/* ユーティリティ
------------------------------------------------------------- */
.h-utility {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}
.unavi {
	display: flex;
	gap: 15px;
}
.unavi li a {
	position: relative;
	display: block;
	font-size: min(.875rem, 2.75vw);
	text-align: center;
	text-decoration: none;
	background-repeat: no-repeat;
	white-space: nowrap;
}
.unavi li a:hover {
	opacity: .5;
}
.unavi li .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto .5em;
	padding: 1.2em .75em;
	background: no-repeat center center;
	background-size: contain;
}
.unavi li.unavi__item--large .icon {
	background-image: url(https://gigaplus.makeshop.jp/natugura/images/common/nabi_bg01.svg);
}
.unavi li.unavi__item--fax .icon {
	background-image: url(https://gigaplus.makeshop.jp/natugura/images/common/nabi_bg02.svg);
}
.unavi li.unavi__item--cart .icon {
	background-image: url(https://gigaplus.makeshop.jp/natugura/images/common/nabi_bg03.svg);
}
.unavi li .icon::before {
	display: block;
	content: '';
	width: 2.5em;
	height: 2.5em;
	background: no-repeat center center;
	background-size: contain;
}
.unavi li.unavi__item--large .icon::before {
	background-image: url(https://gigaplus.makeshop.jp/natugura/images/common/icon_doc_wh.svg);
}
.unavi li.unavi__item--fax .icon::before {
	background-image: url(https://gigaplus.makeshop.jp/natugura/images/common/icon_printer_wh.svg);
}
.unavi li.unavi__item--cart .icon::before {
	background-image: url(https://gigaplus.makeshop.jp/natugura/images/common/icon_cart_wh.svg);
}
.ubtn {
	display: flex;
	flex-wrap: wrap;
	width: 420px;
	max-width: 36vw;
	gap: 10px;
	font-size: min(.875rem);
}
.ubtn li {
	width: calc((100% - 20px) / 3);
	font-size: .875rem;
	line-height: 1.5;
}
.ubtn .ubtn__item--store {
	width: calc(((100% - 20px) / 3 * 2) + 10px);
	font-size: 118%;
	line-height: 1;
}
.ubtn a {
	position: relative;
	display: block;
	padding: .65em .35em;
	border-radius: 8px;
	border: 1px solid var(--color-gray-200);
	white-space: nowrap;
}
.ubtn__item--guide a::after, .ubtn__item--contact a::after {
	position: absolute;
	content: '\203A';
	top: calc(50% - .75em);
	right: .75em;
}
.ubtn a:hover {
	opacity: .5;
}
.ubtn__item--logout a {
	background-color: var(--color-gray-200);
	text-align: center;
}
.ubtn__item--store a {
	padding: .58em .25em;
	border-color: var(--color-secondary);
	background-color: var(--color-secondary);
	color: var(--color-white);
	text-align: center;
}
.ubtn .ubtn__item--store a img {
	width: auto;
	height: 1.2em;
	margin-right: 2px;
	vertical-align: middle;
}
.ubtn__item--mypage a {
	border-color: var(--color-dred);
	background-color: var(--color-dred);
	color: var(--color-white);
	text-align: center;
}

/* gnavi
------------------------------------------------------------- */
.gnavi__wrap {
	padding: 10px;
	text-align: center;
}
.gnavi {
	position: relative;
	display: flex;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
	font-size: .9375rem;
}
.gnavi__item:not(:last-child) {
	border-right: 1px solid var(--color-gray-800);
}
.gnavi__item>a {
	display: block;
	padding: 0 1em;
}
.gnavi__item--open a {
	position: relative;
}
.gnavi__item--open:hover a::after {
	position: absolute;
	content: '';
	left: calc(50% - .5em);
	bottom: -18px;
	width: 15px;
	height: 18px;
	background-color: var(--color-bg-orange2);
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

/* サブメニュー */
.gnavi .gnavi-drop {
	display: none;
	position: absolute;
	top: 18px;
	left: 0;
	z-index: 2;
	width: 100%;
	color: var(--color-black);
}
.gnavi .gnavi-drop .gnavi-drop-wrapper {
	position: relative;
	padding-top: 22px;
}
.gnavi .gnavi-drop .gnavi-drop-box {
	position: relative;
	padding: 30px 30px;
	background: var(--color-bg-orange2);
}

/* サブメニューホバー時 */
.gnavi__item--open:hover .gnavi-drop {
	display: block;
}
.gnavi-drop__list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	text-align: left;
	line-height: 1.4;
}
.gnavi-drop__list li {
	width: calc((100% - 40px) / 3);
}
.gnavi-drop__list.sepa04 li {
	width: calc((100% - 60px) / 4);
}
.gnavi-drop__list a {
	display: block;
}
.gnavi-drop__list a img {
	margin-bottom: 10px;
}
.gnavi-drop__list .name::before {
	display: inline-block;
	content: '\203A';
	margin-right: .5em;
	vertical-align: baseline;
}

/* header-bar
------------------------------------------------------------- */
.header-bar {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 12px 8px;
	background-color: var(--color-primary);
	color: var(--color-white);
	line-height: 1.2;
	text-align: center;
}
.header-bar .label {
	display: inline-block;
	vertical-align: middle;
}
.header-bar .number {
	display: inline-block;
	margin-left: .5em;
	font-size: min(2rem, 4.5vw);
	vertical-align: middle;
}
.header-bar .number::before {
	display: inline-block;
	content: '';
	width: 1em;
	height: 1em;
	margin-right: .25em;
	background: no-repeat center center;
	background-size: contain;
	vertical-align: baseline;
}
.header-bar__tel .number::before {
	background-image: url(https://gigaplus.makeshop.jp/natugura/images/common/icon_tel_wh.svg);
}
.header-bar__fax .number::before {
	background-image: url(https://gigaplus.makeshop.jp/natugura/images/common/icon_fax_wh.svg);
}

/* delivery
------------------------------------------------------------- */
.delivery-day {
	padding: 8px;
	background-color: var(--color-gray-100);
	font-size: .875rem;
	text-align: center;
}
.delivery-day p::before {
	display: inline-block;
	content: '';
	width: 1.25em;
	height: 1.25em;
	margin-top: -.15em;
	margin-right: .5em;
	background: no-repeat center center url(https://gigaplus.makeshop.jp/natugura/images/common/icon_info.svg);
	background-size: 100% auto;
	vertical-align: middle;
}

/* menu
------------------------------------------------------------- */

/* menu open btn */
.burger_btn_area {
	position: absolute;
	position: fixed;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	z-index: 2500;
}
.burger_btn_area .layer {
	position: absolute;
}
input[type="checkbox"]#burger_btn {
	position: absolute;
	visibility: hidden;
	bottom: 0;
}

/* ハンバーガーメニュー */
.burger_open_btn {
	position: absolute;
	top: 10px;
	right: 10px;
	display: block;
	width: 40px;
	height: 40px;
	z-index: 2500;
}
.burger_open_btn span {
	position: relative;
	display: block;
	width: 100%;
	height: 2px;
	margin: 24px auto 0;
	background-color: var(--color-gray-800);
	transition: 0.4s;
}
.burger_open_btn span::before, .burger_open_btn span::after {
	position: absolute;
	content: '';
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--color-gray-800);
	transition: 0.4s;
}
.burger_open_btn span::before {
	top: -12px;
}
.burger_open_btn span::after {
	bottom: -12px;
}

/* ハンバーガーメニューを変形 */
input[type="checkbox"]#burger_btn:checked+.burger_open_btn span {
	background: transparent;
}
input[type="checkbox"]#burger_btn:checked+.burger_open_btn span::before {
	top: 0;
	transform: rotate(45deg);
}
input[type="checkbox"]#burger_btn:checked+.burger_open_btn span::after {
	bottom: 0;
	transform: rotate(-45deg);
}

/* レイヤー */
input[type="checkbox"]#burger_btn:checked~.layer {
	position: fixed;
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .4);
	top: 0;
	right: 0;
	visibility: visible;
	z-index: 2400;
}

/* メニュー：OPEN/CLOSE */
.burger_content {
	position: fixed;
	top: 0;
	right: -90%;
	width: 85%;
	height: 100%;
	transition: 0.1s ease-in-out;
}
input[type="checkbox"]#burger_btn:checked~.burger_content {
	overflow: scroll;
	overscroll-behavior-y: contain;
	-webkit-overflow-scrolling: touch;
	z-index: 2450;
	right: 0;
}
.burger_content {
	padding: 70px 15px 15px;
	background-color: var(--color-white);
}
.bnavi__head {
	margin-bottom: .75em;
	font-weight: 600;
}
.bnavi {
	margin-bottom: 30px;
	border-top: 1px solid var(--color-gray-200);
}
.bnavi li {
	border-bottom: 1px solid var(--color-gray-200);
}
.bnavi li a {
	display: block;
	padding: 8px 4px;
}
@media only screen and (max-width: 767px) {
	.header__inner {
		padding-top: 76px;
	}
	.header__body {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		min-height: 74px;
		background-color: rgba(255, 255, 255, .85);
		z-index: 2000;
	}
	.header__headline,
	.unavi .unavi__item--large,
	.unavi .unavi__item--fax,
	.ubtn li,
	.gnavi__wrap {
		display: none;
	}
	.h-utility {
		align-items: flex-end;
		margin-right: 55px;
		gap: 10px;
	}
	.unavi li .icon {
		margin-bottom: .25em;
		padding: .75em .2em;
	}
	.unavi li .icon::before {
		width: 2em;
		height: 2em;
		margin-right: -.25em;
	}
	.ubtn {
		width: auto;
	}
	.ubtn .ubtn__item--logout {
		display: block;
		width: auto;
		font-size: min(.875rem, 2.75vw);
	}
	.ubtn__item--logout a {
		padding: 0 0 1px;
		background: none;
		border: none;
	}
	.ubtn__item--logout a::before {
		display: block;
		content: '';
		width: 2em;
		height: 2em;
		margin: 0 auto .75em;
		background: no-repeat center center;
		background-size: contain;
		background-image: url(https://gigaplus.makeshop.jp/natugura/images/common/icon_user.svg);
	}
}
@media only screen and (min-width: 768px) {
	.burger_btn_area {
		display: none;
	}
	.header__body {
		align-items: flex-end;
		padding: 20px 15px 10px;
	}
	.header-bar {
		flex-direction: row;
		justify-content: center;
		gap: 30px;
	}
	.header-bar .number::before {
		width: .75em;
		height: .75em;
	}
	.delivery-day {
		padding: 10px;
	}
}

/* -----------------------------------------------------------------------------

サイドカラム

----------------------------------------------------------------------------- */

aside {
	margin: 0;
}
.side-section {
	margin: 40px auto 32px;
}
.side-section:first-child {
	margin: 0 auto 32px;
}
.side-section-title {
	margin-bottom: 1rem;
	font-weight: 600;
}

/* Submenu */
.submenu {
	margin-bottom: 20px;
}
.submenu-title {
	pointer-events: none;
	margin: 16px 0 8px;
	padding: 0;
	font-size: 100%;
	cursor: pointer;
}
.submenu-title-nochild {
	display: block;
	pointer-events: all;
	margin: 16px 0 12px;
	padding: 0 0 8px 8px;
	font-size: 100%;
	font-weight: 600;
}
.submenu-list {
	list-style-type: none;
	margin: 0 0 24px 0;
	padding: 0;
}
.submenu-list li {
	margin: 0;
	padding: 0;
	font-size: .95rem;
}
.submenu a, .submenu a:visited {
	display: block;
	padding: 4px 12px;
	color: #111;
	text-decoration: none;
}
.submenu a:hover, .submenu a:active {
	color: #555;
	font-weight: 600;
	background-color: transparent;
}
.submenu .submenu-title-nochild:hover, .submenu .submenu-title-nochild:active {
	color: #666;
}
.submenu-title-bulk {
	pointer-events: none;
	margin: 16px 0 8px;
	padding: 4px 12px;
	font-size: 100%;
	cursor: pointer;
}
@media screen and (max-width: 960px) {
	.submenu-title {
		pointer-events: all;
	}
	.submenu-list {
		display: none;
	}
}
@media screen and (max-width: 1023px) {
	aside {
		display: none;
	}
}
@media screen and (min-width: 1024px) {
	aside {
		width: 280px;
		margin-right: 30px;
		padding: 0;
	}
	.submenu-title {
		margin: 28px 0 12px;
	}
}

/* -----------------------------------------------------------------

 footer
 
----------------------------------------------------------------- */
#floating-menu {
	bottom: 30px;
	right: 20px;
}
#page-top a {
	background: rgba(0, 0, 0, 0.7) 50% 45% no-repeat;
	background-image: url('data:image/svg+xml,%3Csvg%20enable-background%3D%22new%200%200%2036%2020%22%20height%3D%2220%22%20viewBox%3D%220%200%2036%2020%22%20width%3D%2236%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m35.6%2018.1c0%20.5-.2.9-.5%201.3-.7.7-1.8.7-2.5%200l-14.8-15.2-14.8%2015.2c-.7.7-1.8.7-2.5%200s-.7-1.8%200-2.5l16.1-16.4c.7-.7%201.8-.7%202.5%200l16%2016.4c.3.3.5.8.5%201.2z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E');
	background-size: 40% auto;
}
#page-top a:hover {
	opacity: .75;
	background-image: url('data:image/svg+xml,%3Csvg%20enable-background%3D%22new%200%200%2036%2020%22%20height%3D%2220%22%20viewBox%3D%220%200%2036%2020%22%20width%3D%2236%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m35.6%2018.1c0%20.5-.2.9-.5%201.3-.7.7-1.8.7-2.5%200l-14.8-15.2-14.8%2015.2c-.7.7-1.8.7-2.5%200s-.7-1.8%200-2.5l16.1-16.4c.7-.7%201.8-.7%202.5%200l16%2016.4c.3.3.5.8.5%201.2z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E');
	background-size: 40% auto;
}
.footer__body {
	padding: 30px 15px;
	background-color: var(--color-green);
	color: var(--color-white);
	line-height: 1.2;
}
.footer__body a, .footer__bottom a {
	color: inherit;
}
.footer__bottom {
	padding: 40px 15px;
	background: no-repeat center center url(https://gigaplus.makeshop.jp/natugura/images/common/bg_footer_bottom.png) var(--color-hgreen);
	background-size: 90% auto;
	text-align: center;
	color: var(--color-white);
	line-height: 1.2;
}
.footer__inner {
	max-width: 1200px;
	margin: 0 auto;
}
.footer__title {
	position: relative;
	margin-bottom: .5em;
	font-size: min(1.125rem, 5vw);
	font-weight: 600;
}
.footer__logo {
	text-align: center;
}
.fnavi li {
	margin-bottom: .75em;
}
.fnavi li.fnavi__caption {
	padding-left: .9em;
}
.fnavi a {
	display: block;
}
.fnavi a::before {
	display: inline-block;
	content: '';
	width: .4em;
	height: .85em;
	margin-right: .5em;
	background: no-repeat center top;
	background-image: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024.8%2043%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m3.3%200-3.3%203.3%2018.2%2018.2-18.2%2018.3%203.3%203.2%2021.5-21.5z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E');
	background-size: contain;
	vertical-align: middle;
}
.footer__desc {
	margin-bottom: 1em;
}
.footer__sitename {
	margin-bottom: .5em;
	font-size: min(3.5rem, 8vw);
	font-weight: 500;
}
.footer__sitename span {
	display: inline-block;
}
@media only screen and (max-width: 767px) {
	.footer__info {
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid var(--color-mos);
	}
	.footer__logo img {
		width: 50%;
	}
	.footer__title label {
		display: block;
	}
	.footer__title label::after {
		position: absolute;
		display: block;
		content: '';
		top: .5em;
		right: 0;
		width: 18px;
		height: 10px;
		background: no-repeat;
		background-image: url(https://gigaplus.makeshop.jp/natugura/images/common/icon-arrow-wh.svg);
		background-size: 100% 100%;
		transition: 0.4s;
	}
	.fnavi__group .fnavi {
		position: relative;
		opacity: 0;
		display: none;
		height: 0;
		transition: 0.4s;
	}
	.fnavi__group .vibtn:checked~.fnavi {
		display: block;
		height: auto;
		opacity: 1;
		padding-bottom: 15px;
	}
	.fnavi__group .vibtn:checked+.footer__title {
		padding-bottom: 10px;
	}
	.fnavi__group .vibtn:checked+.footer__title label::after {
		transform: rotate(180deg);
	}
	
/* ユーティリテイ */
	.copyright {
		font-size: 1.2rem;
	}
}
@media only screen and (min-width: 768px) {
	.footer__bottom {
		padding: 100px 15px;
		background-size: auto 80%;
	}
	.footer__content {
		flex: 1;
	}
	.fnavi__wrap {
		display: flex;
		gap: 30px;
	}
	.fnavi__col {
		width: calc((100% - 60px) / 3);
	}
	.footer__title {
		padding-bottom: 10px;
	}
	.fnavi {
		margin-bottom: 30px;
	}
	.footer__desc {
		margin-bottom: 1.5em;
	}
	.footer__sitename {
		margin-bottom: .75em;
	}
}
@media only screen and (min-width: 1023px) {
	.footer__body .footer__inner {
		display: flex;
		gap: 50px;
	}
	.footer__info {
		width: 280px;
		max-width: 30%;
	}
}

/* sns
-----------------------------------------------------------*/
ul.sns-list {
	display: flex;
	justify-content: center;
	padding-left: 0;
	line-height: 1;
}
ul.sns-list li {
	margin: 0 8px;
	list-style-type: none;
}
.sns a {
	display: block;
	text-align: center;
	text-decoration: none;
}
.sns a span {
	display: inline-block;
	width: 28px;
	height: 28px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: auto 100%;
	text-indent: -9999px;
}
.sns a em {
	display: block;
	margin-top: 8px;
	font-size: .875rem;
	font-weight: normal;
}
.sns a:hover {
	opacity: 0.5;
	filter: alpha(opacity=50);
}
.sns .fb a span {
	background-image: url(https://gigaplus.makeshop.jp/natugura/images/common/icon_sns_fb_wh.svg);
}
.sns .x a span {
	background-image: url(https://gigaplus.makeshop.jp/natugura/images/common/icon_sns_x_wh.svg);
}
.sns .insta a span {
	background-image: url(https://gigaplus.makeshop.jp/natugura/images/common/icon_sns_instawh.svg);
}
.sns .line a span {
	background-size: 100% auto;
	background-image: url(https://gigaplus.makeshop.jp/natugura/images/common/icon_sns_linewh.svg);
}


/* -----------------------------------------------------------------------------

 contents

----------------------------------------------------------------------------- */

.contents_wrapper {
	clear: both;
	max-width: 1240px;
	margin: 40px auto;
	padding: 0 20px;
}

.main_contents {
	flex: 1;
	max-width: 1200px;
	margin: 0 auto;
}


/* 背景横突き抜け：ブロック
------------------------------------------------------------- */

.content {
	clear: both;
	overflow: hidden;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	zoom: 100%;
}
.content__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 15px;
}

.main_contents .content {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

@media only screen and (min-width: 768px) {
	.contents_wrapper {
		margin: 40px auto;
	}
	.content__inner {
		padding: 60px 15px;
	}
}


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

 メインコンテンツ

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

/* パンくず
-----------------------------------------------------------*/

.breadcrumb {
	clear: both;
	max-width: 1240px;
	margin: 20px auto 20px;
	padding: 0 20px;
	font-size: .875rem;
}
.breadcrumb li {
	display: inline-block;
	margin-right: 8px;
}
.breadcrumb li:not(:last-child):after {
	content: ">";
	margin-left: 1.2rem;
}

/* ページヘッド / タイトル
-----------------------------------------------------------*/

.column-head {
	max-width: 1200px;
	margin: 20px auto 10px;
}

@media only screen and (min-width: 768px) {
	.column-head {
		margin: 40px auto;
	}
}

/* 見出し
-----------------------------------------------------------*/
.title-block {
	margin-bottom: 20px;
	text-align: center;
	line-height: 1.4;
}
.title-block .min {
	display: inline-block;
	font-size: min(1.125rem, 3.75vw);
	font-weight: 500;
	vertical-align: middle;
}
.title-block .ja--small {
	display: inline-block;
	font-size: min(1.5rem, 4.5vw);
	font-weight: 500;
	vertical-align: middle;
}
.title-block .ja {
	display: inline-block;
	font-size: min(1.875rem, 4.5vw);
	font-weight: 500;
	vertical-align: middle;
}
.title-block .ja--middle {
	display: inline-block;
	font-size: min(2.25rem, 5.5vw);
	font-weight: 500;
	vertical-align: middle;
}
.title-block .ja--large {
	display: inline-block;
	font-size: min(3rem, 6vw);
	font-weight: 500;
	vertical-align: middle;
}
.title-block .ja--xl {
	display: inline-block;
	font-size: min(3.5rem, 6vw);
	font-weight: 500;
	vertical-align: middle;
}
.title-block .fl-large::first-letter {
	font-size: 134%;
}
.title-block p {
	margin-top: 20px;
}
.title--line {
	position: relative;
	margin-bottom: 40px;
}
.title--line::before {
	position: absolute;
	content: '';
	left: calc(50% - 140px);
	bottom: -20px;
	width: 280px;
	height: 10px;
	background: no-repeat center center;
	background-image: url(https://gigaplus.makeshop.jp/natugura/images/common/bg_title_line.svg);
	background-size: contain;
}
.title-cat {
	position: relative;
}
.title-cat::after {
	position: absolute;
	display: block;
	content: '';
	width: 2.5em;
	height: 2.5em;
	right: -2.75em;
	top: -.75em;
	background: no-repeat center bottom url(https://gigaplus.makeshop.jp/natugura/images/common/illust_cat.png);
	background-size: contain;
}
.cover-img {
	margin-top: 20px;
}
.title-sub {
	margin-bottom: 1em;
	padding-left: .5em;
	border-left: 4px solid var(--color-secondary);
	color: var(--color-secondary);
	font-size: min(1.5rem, 5vw);
	line-height: 1.4;
}
.title-min {
	margin-bottom: 1em;
}
.title-min .label {
	display: inline-block;
	padding: .5em .75em;
	background-color: var(--color-primary);
	color: var(--color-white);
}
@media only screen and (min-width: 768px) {
	.title-block {
		margin-bottom: 30px;
	}
}

/* btn
----------------------------------------------------------- */

p.btn-box {
	clear: both;
	margin: 0;
	padding: 20px 0 30px;
	text-align: center;
}
.btn-box__label {
	display: block;
	margin-bottom: .5em;
	font-size: min(1.5rem, 4vw);
}
.btn-box a ,
.btn-box label {
	display: inline-block;
	width: 280px;
	max-width: 100%;
	padding: 1em 4px;
	border-radius: 50vh;
	background: var(--color-dgreen);
	color: var(--color-white);
	font-size: 1.125rem;
	text-align: center;
	text-decoration: none;
}
.btn-box a:hover, .btn-box label:hover {
	opacity: .5;
}
.btn-box a.btn--white, .btn-box label.btn--white {
	border: 1px solid var(--color-gray-200);
	background-color: var(--color-white);
	color: var(--color-gray-800);
}
.btn-box a.btn--mos, .btn-box label.btn--mos {
	background-color: var(--color-mos);
}
.btn-box a.btn--bl, .btn-box label.btn--bl {
	background-color: var(--color-gray-800);
}
.btn-box a.btn--or, .btn-box label.btn--or {
	background-color: var(--color-primary);
}
.btn-box a.btn--min, .btn-box label.btn--min {
	width: 160px;
	max-width: 100%;
	padding: .5em 8px;
	font-size: inherit;
}

/* text
-----------------------------------------------------------*/
.text-block {
	line-height: 1.8;
}
.text-block:not(:last-child) {
	margin-bottom: 30px;
}
.text-block p:not(:last-child) {
	margin-bottom: 1.5em;
}
.color--red {
	color: var(--color-dred);
}
.color--lred {
	color: var(--color-lred);
}
.color--green {
	color: var(--color-secondary);
}
.color--orange {
	color: var(--color-primary);
}
.color--brown {
	color: var(--color-brown);
}
.color--blue {
	color: #006699;
}
.color--sky {
	color: #3399cc;
}
.ls--200 {
	display: inline-block;
	padding-left: .2em;
	letter-spacing: .2em;
}
.text--L {
	font-size: 120%;
}
.text--LL {
	font-size: 150%;
}
.text--LLL {
	font-size: 180%;
}


/* ページネーション/ページャー
-----------------------------------------------------------*/

.pagination {
	clear: both;
	position: relative;
	margin-top: 30px;
	text-align: center;
	line-height: 1.2;
}
.pagination span,
.pagination a {
	width: 2em;
	height: 2em;
	margin-right: .5em;
	border-radius: 50%;
	border: 1px solid var(--color-primary);
	line-height: 1.8;
}
.pagination a {
	display: inline-block;
	background-color: var(--color-primary);
	color: var(--color-white);
	text-decoration: none;
}
.pagination a:hover {
	opacity: .5;
}
.pagination span {
	display: none;
}
.pagination .current {
	display: inline-block;
}

/* ボタンボックス
-----------------------------------------------------------*/

p.btn-box {
	clear: both;
	margin: 0;
	padding: 20px 0;
	text-align: center;
}

.btn-box a ,
.btn-box label {
	display: inline-block;
	width: 320px;
	max-width: 100%;
	padding: 10px;
	background: var(--color-gray-700);
	color: var(--color-white);
	text-align: center;
	text-decoration: none;
}
.btn-box a:hover ,
.btn-box label:hover {
	opacity: .65;
}

.btn-box--whline a ,
.btn-box--whline label {
  background-color: transparent;
  border: 1px solid var(--color-white);
}

.btn-box--beige a ,
.btn-box--beige label {
  border-radius: 6px;
  background-color: #c2b497;
}
.btn-box--beige a::after ,
.btn-box--beige label::after {
  display: inline-block;
  content: '';
  width: .5em;
  height: 1em;
  margin-left: .5em;
  background: no-repeat left top;
	background-image: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2011%2018%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m1%201%208%208-8%208%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E');
	background-size: 100% auto;
  vertical-align: middle;
}


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

 投稿 post

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

/*------------------------------------------------------------------------------

 アーカイブ archive / blog

------------------------------------------------------------------------------*/

.term_list__title {
	margin-bottom: 1em;
	font-size: min(2rem,5vw);
}

.term_list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
}
.term_list a ,
.term_list .current .term {
	display: flex;
	padding: .25em 1.5em;
	border-radius: 50vh;
	border: 1px solid var(--color-secondary);
	color: var(--color-secondary);
	text-decoration: none;
}
.term_list .current .term {
	background-color: var(--color-mos);
	color: var(--color-white);
}
.term_list a:hover {
	background-color: var(--color-secondary);
	color: var(--color-white);
}
@media only screen and (min-width: 768px) {
	.term_list__wrap {
		display: flex;
		gap: 1em;
	}
	.term_list__title {
		width: 7em;
	}
	.term_list {
		flex: 1;
	}
}

/* アーカイブ一覧表示 block
-----------------------------------------------------------*/

.entry-card__list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.entry-card__list li {
	position: relative;
	flex-grow: 0;
	width: 100%;
}

.entry-card__list a {
	display: block;
	text-decoration: none;
}
.entry-card__list .thumb {
	position: relative;
	display: block;
	overflow: hidden;
	margin-bottom: 15px;
	aspect-ratio: 1/1;
}
.entry-card__list .thumb img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
}

.entry-card__list .cate_box {
	position: absolute;
	display: block;
	top: 0;
	right: 0;
	z-index: 2;
}
.entry-card__list .cate_box a {
	display: inline-block;
	margin: 0 0 2px 0;
	padding: 4px 15px;
	background: var(--color-primary);
	color: var(--color-white);
	font-size: .875rem;
	text-decoration: none;
	vertical-align: middle;
}

.entry-card__list .title {
	display: block;
	position: relative;
	overflow: hidden;
	max-height: 2.8em;
	margin: 8px 0 8px;
	padding-right: .5em;
	font-size: min(1.25rem,6vw);
	line-height: 1.4;
}

.entry-card__list .entry_info {
	height: 1.2em;
	margin-bottom: 8px;
	font-size: 1.2rem;
	line-height: 1.2;
}
.entry-card__list .entry_txt {
	display: block;
	padding-right: .5em;
	height: 3em;
	line-height: 1.4;
}

@media only screen and (min-width: 768px) {
	.entry-card__list {
		gap: 30px 20px;
	}
	.entry-card__list li {
		width: calc((100% - 40px) / 3);
	}
	.entry-card__list .thumb {
		aspect-ratio: 1/1;
	}
	.entry-card__list .title {
		height: 2.8em;
	}
}

/*------------------------------------------------------------------------------

 記事 single / page

------------------------------------------------------------------------------*/

.entry_content {
	position: relative;
	max-width: 1000px;
	margin: 0 auto 40px;
	line-height: 1.8;
}

.entry_title {
	margin-bottom: .5em;
	color: var(--color-secondary);
	font-size: min(2rem,6.5vw);
	font-weight: normal;
	text-align: left;
	line-height: 1.4;
}

.entry_content .entry_info {
	margin-bottom: 30px;
	line-height: 1.2;
	font-size: .875rem;
}
.entry_content .entry_info p {
	margin: 0;
}

.entry_content .cate_box {
	float: left;
}
.entry_content .cate_box a {
	display: inline-block;
	margin: 0 0 2px 0;
	padding: 4px 15px;
	background: var(--color-primary);
	color: var(--color-white);
	text-decoration: none;
	vertical-align: middle;
}

.entry_content .data_box {
	padding: 0 8px;
	text-align: right;
}
.entry_content .data_box span {
	display: inline-block;
}

.entry_thumbs {
	margin-bottom: 30px;
	text-align: center;
}

.entry_content .tag_box a {
	display: inline-block;
	margin: 0 2px 0 0;
	font-size: .875rem;
	font-weight: bold;
	vertical-align: middle;
}
.entry_content .tag_box a::before {
	content: '#';
}


/* 汎用
-----------------------------------------------------------*/

.entry_content p {
	margin-bottom: 1.6em;
}

.entry_content a {
	color: var(--color-primary);
	text-decoration: underline;
}
.entry_content a:hover {
	color: inherit;
	text-decoration: none;
}

.entry_content .btn-box a {
	color: var(--color-white);
	text-decoration: none;
}

.entry_content hr {
	margin-top: 1.6em;
	margin-bottom: 1.6em;
}

.entry_content em {
	display: inline-block;
	font-weight: bold;
}


/* 記事内見出し ----------------------------- */

.entry_content h2 {
	scroll-margin-top: 150px;
	position: relative;
	margin-bottom: 1.5em;
	padding-bottom: .5em;
	border-bottom: 1px solid var(--color-secondary);
	font-family: '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
	font-size: 145%;
	font-weight: normal;
	line-height: 1.4;
}

.entry_content h3 {
	scroll-margin-top: 100px;
	margin-bottom: 1em;
	padding: .5em;
	background-color: var(--color-gray-100);
	color: var(--color-dgreen);
	font-size: 125%;
	font-weight: normal;
	line-height: 1.4;
}

.entry_content h4 {
	margin-bottom: 15px;
	font-size: 116%;
	font-weight: normal;
	line-height: 1.4;
}

.entry_content h5 {
	margin-bottom: 15px;
}

.entry_content h6 {
	margin-bottom: 10px;
}


/* テーブル ----------------------------- */

.entry_content table {
	min-width: 70%;
	margin-bottom: 20px;
	border-collapse: collapse;
	text-align: left;
}
.entry_content table th {
	padding: 10px;
	border: 1px solid var(--color-gray-200);
	font-weight: bold;
}
.entry_content table td {
	padding: 10px;
	border: 1px solid var(--color-gray-200);
}


/* リスト ----------------------------- */

.entry_content ul {
	margin-bottom: 30px;
	padding-left: 1.5em;
	text-align: left;
}
.entry_content ul li {
	list-style-type: disc;
}

.entry_content ol {
	margin-bottom: 30px;
	padding-left: 1em;
	text-align: left;
}
.entry_content ol li {
	list-style-type: decimal;
}


/* 引用  ------------------------------- */
/* 引用じゃないけど引用と同じデザインにしたい時 */
.entry_content blockquote ,
.quote_area {
	margin: 20px 0 20px 10px;
	padding: 30px 20px 20px 40px;
	background: url('data:image/svg+xml,%3Csvg%20enable-background%3D%22new%200%200%20512%20512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22%23ddd%22%3E%3Cpath%20d%3D%22m392.5%20445.4c66%200%20119.5-53.5%20119.5-119.5s-53.5-119.5-119.5-119.5c0%200%20.6-44.4%2036.6-108.3%204-12.8-3.1-26.4-15.9-30.4-9.1-2.9-18.7-.1-24.8%206.4-82.9%2090.7-115.4%20197.4-115.4%20251.8%200%2066%2053.5%20119.5%20119.5%20119.5z%22%2F%3E%3Cpath%20d%3D%22m119.5%20445.4c66%200%20119.5-53.5%20119.5-119.5s-53.5-119.5-119.5-119.5c0%200%20.6-44.4%2036.6-108.3%204-12.8-3.1-26.4-15.9-30.4-9.1-2.9-18.7-.1-24.8%206.4-82.9%2090.7-115.4%20197.4-115.4%20251.8%200%2066%2053.5%20119.5%20119.5%20119.5z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') var(--color-gray-100) no-repeat 10px 10px;
	background-size: 80px auto;
}

.entry_content blockquote p ,
.quote_area p {
	margin: 0;
}


/* 画像 ------------------------------- */

/* 投稿画像 */
img.size-full ,
img.size-large {
	margin-bottom: 10px;
}
.image_iblock {
	display: inline-block;
	margin: 10px 10px 20px;
	font-size: .75rem;
	vertical-align: top;
}
.image_iblock .wp-caption {
	position: relative;
	max-width: 100%;
	height: auto;
}
.image_iblock .wp-caption-text {
	position: absolute;
	bottom: -10px;
	width: 100%;
	margin-bottom: 0;
	padding: 5px;
	background: var(--layer_dark);
	color: var(--color-white);
	text-align: center;
}
.image_iblock .wp-caption-text a,
.image_iblock .wp-caption-text {
	font-size: 100%;
	color: var(--color-white);
}


/* 画像位置 */

img.alignright {
	display: block;
	margin: 0 0 0 auto;
}
img.alignleft {
	display: block;
	margin: 0 auto 0 0;
}
img.aligncenter {
	display: block;
	margin: 0 auto;
}
img.float-left {
	float: left;
}
img.float-right {
	float: right;
}
.wp-caption {
	text-align: center;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


/* もくじブロック
-----------------------------------------------------------*/

.entry_content #toc_container {
	display: block;
	padding: 15px 20px;
	border: 1px solid var(--color-gray-200);
}
.entry_content #toc_container .toc_list li:not(:last-child) {
	border-bottom: 1px solid var(--color-gray-300);
}
.entry_content #toc_container .toc_list li a {
	display: block;
	padding: .25em 0;
}


/* 商品ブロック
-----------------------------------------------------------*/

.product-block {
	margin-bottom: 40px;
}
.product-block .thumb {
	margin-bottom: 15px;
	text-align: center;
}
.product-block .text h3 {
	padding: 0;
	background: none;
}
@media only screen and (min-width: 768px) {
	.product-block {
		display: flex;
		gap: 30px;
	}
	.product-block .thumb {
		width: 400px;
		max-width: 40%;
		margin-bottom: 0;
	}
	.product-block .text {
		flex: 1;
	}
}


/* PREV NEXT
-----------------------------------------------------------*/

.p_navi {
	position: relative;
	margin-bottom: 40px;
	padding: 20px 0;
	border-top: 1px solid var(--color-gray-200);
	border-bottom: 1px solid var(--color-gray-200);
	font-size: .875rem;
}

.p_navi a {
	display: block;
	text-decoration: none;
}
.p_navi a span {
	display: block;
}
.p_navi a em {
	display: inline-block;
	margin-bottom: 8px;
	padding: 2px 10px;
	background: var(--color-secondary);
	color: var(--color-white);
}
.p_navi a b {
	display: block;
	font-weight: normal;
}
.p_navi a:hover em {
	opacity: 0.7;
	filter: alpha(opacity=70);
}

.p_navi .prev {
	float: right;
	width: 50%;
	padding-left: 10px;
	text-align: right;
}

.p_navi .next {
	float: left;
	width: 50%;
	padding-right: 10px;
}
.p_navi .next div {
	border-right: 1px solid var(--color-gray-200);
}

@media only screen and (min-width: 768px) {
	.share_area {
		margin: 40px auto;
	}
	.share__list li span {
		display: inline-block;
	}	
	.image_iblock {
		width: 44%;
		width: auto;
	}
}


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

 固定ページ

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

/* -----------------------------------------------------------------------------

 page

----------------------------------------------------------------------------- */


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

 汎用CSS

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

/* テキスト関係 --------------------- */

.attention { /* 注意色(基本赤) */
	color: var(--color-dred);
}

.bold {
	font-weight: bold;
}

.text_SS {
	font-size: 75%;
}

.text_S {
	font-size: 86%;
}

.text_L {
	font-size: 120%;
}

.text_LL {
	font-size: 150%;
}

.text_LLL {
	font-size: 180%;
}


/* テキスト位置設定 ---------------- */

.entry_content p.center ,
.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}


/* マージン関係 ------------------- */

.m0 {
	margin: 0;
}

.m10 {
	margin: 10px;
}

.mT10 {
	margin-top: 10px;
}

.mT20 {
	margin-top: 20px;
}

.mB5 {
	margin-bottom: 5px;
}

.mB10 {
	margin-bottom: 10px;
}

.mB20 {
	margin-bottom: 20px;
}

.mR5 {
	margin-right: 5px;
}

.mR10 {
	margin-right: 10px;
}

.mR20 {
	margin-right: 20px;
}

.mL5 {
	margin-left: 5px;
}

.mL10 {
	margin-left: 10px;
}

.mL20 {
	margin-left: 20px;
}

.mRL10 {
	margin: auto 10px;
}

/*　パディング関係 ------------------ */
.p0 {
	padding: 0;
}

.p10 {
	padding: 10px;
}

.pT5 {
	padding-top: 5px;
}

.pT10 {
	padding-top: 10px;
}

.pB10 {
	padding-bottom: 10px;
}

.pR10 {
	padding-right: 10px;
}

.pL10 {
	padding-left: 10px;
}

.pB20 {
	padding-bottom: 20px;
}

.pRL10 {
	padding: auto 10px;
}

/* フロート関係 ------------------- */

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.clear,
.clearBoth {
	clear: both;
}

.clearfix {
	/zoom : 1; /* IE6-7 */
}
.clearfix:after { /* modern */
	content : '';
	display : block;
	clear : both;
	height: 0;
}


@media only screen and (max-width: 767px) {
	.sp_hide {
		display: none;
	}
	.sp_center {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}
@media only screen and (min-width: 768px) {
	.pc_hide {
		display: none;
	}
	.pc_center {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}
