@charset "utf-8";
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
共通
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
body.stop {
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.allwrapper {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 0 0 12.5vw;
}

.inner {
	width: 100%;
	padding: 0 5vw 0 2.5vw;
	margin: 0 auto;
}
.padd_head {
	padding: 12.5vw 0 0;
}

/*input設定*/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
input[type="date"],
input[type="number"],
input[type="password"],
select,
textarea {
	font-size: max(1.6rem, 16px);
}

/*///////////////////////////////////*/
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
SP
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ヘッダー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#upper {
	position: fixed;
	width: 100%;
	height: 12.5vw;
	z-index: 2000;
}
#upper .head_inner {
	width: 100%;
	height: 100%;
	padding: 0 12.5vw;
}
/*ロゴ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#upper .logo {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0 auto;
	font-weight: normal;
}
/*ロゴ画像*/
#upper .logo img {
	margin-right: 2.5vw;
}
.WSP #upper .logo .pc_up {
	display: none;
}
.WSP #upper .logo .sp_up {
	display: block;
}
/*ロゴテキスト*/
#upper .logo .site_logo_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
}
#upper .logo .site_logo_wrap:hover {
	opacity: 0.8;
}
#upper .logo .txt_wrap {
	display: flex;
	flex-direction: column;
}
/*メインテキスト*/
#upper .logo .main_txt {
	line-height: 1;
	white-space: pre;
}
/*サブテキスト*/
#upper .logo .sub_txt {
	line-height: 1;
}
#upper .logo .sub_txt.top {
	margin-bottom: 1.25vw;
}
#upper .logo .sub_txt.bottom {
	margin-top: 1.25vw;
}
/*///////////////////////////////////*/

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ハンバーガー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.menu-trigger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 12.5vw;
	height: 12.5vw;
	cursor: pointer;
	text-align: center;
	z-index: 1000;
}
.trigger_wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	width: 6.25vw;
	height: 5vw;
}
/*3本線*/
.trigger_wrap span {
	display: block;
	width: 100%;
	/* height: 0.3125vw; */
	height: 1px;
	transition: all 0.4s;
}
.menu-trigger span:nth-of-type(1) {
	width: 100%;
}
.menu-trigger span:nth-of-type(2) {
	width: 70%;
}
.menu-trigger span:nth-of-type(3) {
	width: 50%;
}
.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(2.2vw) rotate(-315deg);
	transform: translateY(2.2vw) rotate(-315deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	width: 100%;
	-webkit-transform: translateY(-2.3vw) rotate(315deg);
	transform: translateY(-2.3vw) rotate(315deg);
}
/*///////////////////////////////////*/

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
グローバルナビSP
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#Gnav ul,
#Gnav ol {
	list-style: none;
	padding: 0;
	margin: 0;
}
#Gnav {
	display: none;
}
.WSP #Gnav {
	display: none;
	position: fixed;
	top: 12.5vw;
	left: 0;
	width: calc(100vw - (100vw - 100%));
	height: calc(100vh - 12.5vw);
	overflow: auto;
	padding: 0 0 30vw;
	font-size: 0;
	z-index: 900;
}

/*グローバルナビ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.WSP #Gnav .g_nav_menu {
	padding: 0 3.75vw;
	margin-bottom: 7.5vw;
}
.WSP #Gnav .g_nav_menu li {
	position: relative;
}
/*サブメニュー設定*/
.WSP #Gnav .g_nav_menu .sub-menu {
	display: none;
}
.WSP #Gnav .g_nav_menu > li > ul.sub-menu,
.WSP #Gnav .g_nav_menu > li > ul.sub-menu > li > ul.sub-menu,
.WSP #Gnav .g_nav_menu > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu {
	padding: 0 0 0 5vw;
}
/*aタグ設定*/
.WSP #Gnav .g_nav_menu a {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 13.75vw;
	padding: 0 0 0 2.5vw;
	font-size: 1.8rem;
	letter-spacing: 1px;
	line-height: 1;
	border-bottom-width: 0.15625vw;
	border-bottom-style: solid;
}
.WSP #Gnav ul.g_nav_menu a span {
	font-size: 1.2rem;
	padding: 1vw 0 0 5vw;
}
/*OPENボタン*/
.WSP #Gnav .g_nav_menu .has-child > .btn-icon,
.WSP #Gnav .g_nav_menu .has-grand > .btn-icon {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6.25vw;
	height: 13.75vw;
	cursor: pointer;
}
.WSP #Gnav .g_nav_menu .has-child > .btn-icon::before,
.WSP #Gnav .g_nav_menu .has-grand > .btn-icon::before {
	content: "\e145";
	font-family: "Material Icons";
	font-size: 2rem;
	font-weight: 500;
}
.WSP #Gnav .g_nav_menu .has-child.active > .btn-icon::before,
.WSP #Gnav .g_nav_menu .has-grand.active > .btn-icon::before {
	content: "remove";
}
/*///////////////////////////////////*/

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
head_gear
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.head_gear {
	display: none;
}

/*ヘッダー電話番号
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.WSP .tel_wrap.onfs,
.WSP .sp_tel_wrap.onfs {
	display: none;
}
.sp_tel_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 86%;
	padding: 5vw 0;
	margin: 15vw auto 0;
	border-width: 1px;
	border-style: solid;
}
.sp_tel_wrap::before {
	content: "\e0b0";
	font-family: "Material Icons";
	font-size: 4rem;
	transform: rotate(16deg);
}
.sp_tel_wrap .tel_cont {
	padding: 0 0 0 1.25vw;
}
.sp_tel_wrap .tel_link {
	font-size: 3rem;
}
.sp_tel_wrap .tel_txt {
	font-size: 1.6rem;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
C_gear：タイプC
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.C_gear {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 15vw auto;
}
/*電話
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.C_gear .tel_wrap {
	padding: 3.75vw 6.25vw;
	border: 1px solid;
}

.WSP .C_gear .tel_wrap.onfs {
	display: none;
}
.C_gear .tel_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.C_gear .tel_wrap::before {
	content: "\e0b0";
	font-family: "Material Icons";
	font-size: 4rem;
	transform: rotate(16deg);
}
.C_gear .tel_cont {
	padding: 0 0 0 1.25vw;
}
.C_gear .tel_cont .tel_link {
	display: block;
	font-size: 3rem;
	line-height: 1;
	margin: 0 0 8px;
}
.C_gear .tel_cont .tel_txt {
	font-size: 1.6rem;
	line-height: 1;
}
.C_gear .head_ic_list {
	width: 40%;
}

/*アイコンリスト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.WSP .head_ic_list.onfs {
	display: none;
}

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

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
パンくず
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#bread_wrap {
	width: auto;
	max-width: 100%;
	overflow: hidden;
	padding: 0 3.75vw;
	margin: -2.5vw auto 0;
}
#bread_wrap .bread_area {
	display: inline-block;
	width: auto;
	max-width: 100%;
	height: 7.5vw;
	z-index: 10000;
}
#bread_wrap .bread_mask {
	width: auto;
	height: 100%;
	padding: 0 2.5vw;
}
#bread_wrap .bread_cont {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 100%;
	overflow-x: auto;
	overflow-y: hidden;
}
#bread_wrap .breadcrumbs {
	white-space: nowrap;
	font-size: 1.2rem;
}
#bread_wrap .breadcrumbs > span {
	margin: 0 1.25vw;
}
#bread_wrap .breadcrumbs > span:first-child {
	margin: 0 1.25vw 0 0;
}
#bread_wrap .breadcrumbs > span:last-child {
	margin: 0 0 0 1.25vw;
}
#bread_wrap span,
#bread_wrap a {
	font-size: 1.2rem;
}

/*LP用*/
.lp_bread {
	margin-bottom: 5vw;
}
.lp_bread.cb_link_4,
.lp_bread.cb_sns_4 {
	margin-bottom: 15vw;
}
.lp_bread #bread_wrap {
	margin: 0 auto;
}

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

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
スクロールバー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.set_scroll_bar::-webkit-scrollbar {
	height: 4px;
}
.set_scroll_bar::-webkit-scrollbar-track {
	background-color: rgba(0, 0, 0, 0);
}
.set_scroll_bar::-webkit-scrollbar-thumb {
	background-color: #ffffff;
}
/*///////////////////////////////////*/

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
フッター
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.foot_set {
	background-position: top center;
	background-size: cover;
}
#under .foot_inner {
	display: flex;
	flex-direction: column-reverse;
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
#under .foot_cont {
	text-align: center;
}

/**/
.textarea_br {
	white-space: pre-wrap;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
info_box
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.WSP .info_box {
	padding: 15vw 10vw;
	text-align: center;
}

/*ロゴ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.WSP .foot_logo {
	text-align: center;
	overflow: hidden;
	margin: 0 0 8.75vw;
}
/*ロゴテキスト*/
.WSP .foot_logo .site_logo_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.WSP .foot_logo img {
	margin-right: 2.5vw;
}
.WSP .foot_logo .txt_wrap {
	display: flex;
	flex-direction: column;
}
/*メインテキスト*/
.WSP .foot_logo .main_txt {
	line-height: 1;
}
/*サブテキスト*/
.WSP .foot_logo .sub_txt {
	line-height: 1;
}
.WSP .foot_logo .sub_txt.top {
	margin-bottom: 1.25vw;
}
.WSP .foot_logo .sub_txt.bottom {
	margin-top: 1.25vw;
}

/*住所など
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.foot_add_txt {
	line-height: 2;
	margin: 0 0 8.75vw;
}

/*SNS
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.sns_cont {
	overflow: hidden;
}
.sns_cont .sns_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
/*li*/
.sns_cont .sns_list li {
	width: 9vw;
	height: 9vw;
	overflow: hidden;
	margin: 0 7vw 0 0;
}
.sns_cont .sns_list li:last-child {
	margin: 0;
}
.sns_cont .sns_list li a {
	display: flex;
	justify-content: center;
	align-items: center;
}
.sns_cont .sns_list li a:hover {
	opacity: 0.8;
}
.sns_cont .sns_list li img {
	max-width: 100%;
	max-height: 100%;
}
/*///////////////////////////////////*/

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
fr_cont
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.WSP .fr_cont {
	background-position: top center;
	background-size: cover;
}

/*under_nav_sp
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.WSP .under_nav {
	padding: 18.75vw 3.75vw;
}
.WSP .under_nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.WSP .under_nav .foot_list {
	padding: 0;
}
.WSP .under_nav .nav_wrap:first-child .foot_list {
	border-top-width: 0.15625vw;
	border-top-style: solid;
}
.WSP .under_nav .foot_list li {
	position: relative;
}
.WSP .under_nav .foot_list li a {
	display: flex;
	align-items: center;
	font-size: 1.8rem;
	width: 100%;
	height: 13.75vw;
	padding: 0 0 0 2.5vw;
	border-bottom-width: 0.15625vw;
	border-bottom-style: solid;
}
.WSP .under_nav .foot_list li a span {
	font-size: 1.2rem;
	padding: 1.25vw 0 0 1.25vw;
}

/*サブメニュー非表示*/
.WSP .under_nav .foot_list li .sub-menu {
	display: none;
}
.WSP .under_nav .foot_list > li > .sub-menu,
.WSP .under_nav .foot_list > li > .sub-menu > li > .sub-menu,
.WSP .under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > .sub-menu,
.WSP .under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > .sub-menu {
	padding: 0 0 0 2.5vw;
}

/*子のa*/
.WSP .under_nav .foot_list > li > .sub-menu > li > a,
.WSP .under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > a,
.WSP .under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a,
.WSP .under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a {
	font-size: 1.6rem;
	padding: 0 0 0 2.5vw;
}
/*OPENボタン*/
.WSP .under_nav .foot_list .has-child > .btn-icon,
.WSP .under_nav .foot_list .has-grand > .btn-icon {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 13.75vw;
	height: 13.75vw;
	cursor: pointer;
}
.WSP .under_nav .foot_list .has-child > .btn-icon::before,
.WSP .under_nav .foot_list .has-grand > .btn-icon::before {
	content: "\e145";
	font-family: "Material Icons";
	font-size: 2rem;
	font-weight: 500;
}
.WSP .under_nav .foot_list .has-child.active > .btn-icon::before,
.WSP .under_nav .foot_list .has-grand.active > .btn-icon::before {
	content: "remove";
}

/*under_free
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.under_free {
	padding: 5vw;
	line-height: 1.6;
}
.under_free a:hover {
	opacity: 0.8;
}
/*地図*/
.under_free iframe {
	width: 100%;
	height: 100vw;
}

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

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
コピーライト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.bottom_cont {
	width: 100%;
	overflow: hidden;
	padding: 8.75vw 0;
}
/*共通バーがある場合*/
.bottom_cont.cb_on {
	padding: 8.75vw 0 20vw;
}
.bottom_cont .foot_bottom_inner {
	width: 100%;
}
/*特商・プライバシー・利用規約*/
.bottom_cont .bottom_menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 0 0 8.75vw;
	line-height: 1;
}
.bottom_cont .bottom_menu a {
	font-size: 1.3rem;
	letter-spacing: -1px;
}
.bottom_cont .bottom_menu span {
	padding: 0 2vw;
}
/*コピーライト*/
.bottom_cont .c_r {
	display: block;
	font-size: 1.2rem;
	text-align: center;
}
/*///////////////////////////////////*/

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
fix_cont
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.WSP .fix_cont.fc_pc {
	display: none;
}
.WSP .fix_cont.fc_sp {
	display: flex;
}
.fix_cont {
	position: fixed;
	bottom: 0;
	right: 0;
	display: flex;
	width: 100%;
	height: 12.5vw;
	z-index: 800;
}
.fix_wrap {
	position: relative;
	width: 100%;
	height: 100%;
}
.fix_box {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.fix_wrap:hover,
.fix_box:hover {
	opacity: 0.8;
}
.fix_box img {
	width: 6.25vw;
	height: auto;
}
/*カート*/
.fix_wrap .woo_cc {
	position: absolute;
	top: 1vw;
	left: 1vw;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6vw;
	height: 6vw;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	border-radius: 50%;
	background: #000;
}

/*ページトップ*/
#page-top a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
#page-top a img {
	width: 5vw;
	height: auto;
}

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

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
外部ショップモーダル
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#m_outside_shop_area {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 10000;
}
#m_outside_shop_area .wrap {
	width: 100%;
	height: 100%;
}
#m_outside_shop_area .cont {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 90%;
	height: 100%;
	margin: 0 auto;
}
#m_outside_shop_area .box {
	width: 100%;
	margin: 0 auto;
}
/*外部リンクショップボタン*/
.outside_shop_list {
	width: 100%;
	margin: 0 auto;
}
.outside_shop_list .out_shop {
	margin: 0 0 32px;
}
.outside_shop_list .out_shop a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 48px;
	font-size: 1.6rem;
}

/*テキスト*/
#m_outside_shop_area .pop_txt {
	font-size: 2.4rem;
	padding-bottom: 1.25vw;
	margin-bottom: 7.5vw;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

/*閉じるボタン*/
#m_outside_shop_area #m_close {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 10vw 0 0;
	color: #fff;
}
#m_outside_shop_area #m_close p {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
}
#m_outside_shop_area #m_close span {
	font-family: "Ionicons";
	font-size: 3rem;
	margin: 0 1.25vw 0 0;
}
/*///////////////////////////////////*/

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
検索モーダル
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#m_search_area {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 10000;
}
#m_search_area .wrap {
	width: 100%;
	height: 100%;
}
#m_search_area .cont {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 90%;
	height: 100%;
	margin: 0 auto;
}
#m_search_area .cwrap {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 5;
}
#m_search_area .box {
	position: relative;
	width: 100%;
	margin: 0 auto;
	z-index: 10;
}

/*検索フォーム
////////////////////////////////////*/
#m_searchform {
	position: relative;
	display: block;
	width: 100%;
	padding: 0 !important;
	border-top: none;
}
/*検索リスト*/
#m_searchform .search_select_box {
	margin: 0 0 6.25vw;
}
/*検索文言*/
#m_searchform .search_txt {
	margin: 0 0 2.5vw;
}
/*select*/
#m_searchform .postform {
	height: 10vw;
	padding: 1.2vw;
	font-size: max(1.6rem, 16px);
	border: 0;
}
/*入力欄・ボタンを囲うもの*/
#m_search_area .m_wrap {
	position: relative;
}
/*入力*/
#m_keywords {
	width: 100%;
	height: 10vw;
	font-size: max(1.6rem, 16px);
	padding: 1.2vw 10vw 1.2vw 1.2vw;
	border: none;
}
#m_keywords:placeholder-shown {
	font-size: 1.6rem;
}
/*ボタン*/
#m_searchBtn {
	position: absolute;
	top: 0;
	right: 0;
	width: 10vw;
	height: 100%;
	padding: 0;
	font-family: "Ionicons";
	font-size: 3rem;
	border: none;
	background: none;
}
/*閉じるボタン*/
#m_search_area #m_close {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 10vw 0 0;
}
#m_search_area #m_close p {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
}
#m_search_area #m_close span {
	font-family: "Ionicons";
	font-size: 3rem;
	margin: 0 1.25vw 0 0;
}
/*///////////////////////////////////*/

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
固定ページ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#page_wrap {
}
/*デフォルトテンプレート*/
#page_area.page_default {
	padding: 0 3.75vw;
}
/*ワイドテンプレート*/
#page_area.page_wide {
	overflow: hidden;
	padding: 0 3.75vw;
}
/*フルテンプレート*/
#page_area.page_full {
	overflow: hidden;
}

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

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
共通バー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#common_bar_wrap {
	position: fixed;
	bottom: 12.5vw;
	width: 100%;
	z-index: 1000;
}
#common_bar_wrap .cbc_cont {
	width: 100%;
}
/*PC用*/
#common_bar_wrap .pc_cbc_link {
	display: none;
}
/*リンクボタン
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#common_bar_wrap .sp_cbc_link {
	width: 90%;
	height: 10vw;
	margin: 0 auto 4vw;
	border-radius: 8px;
	overflow: hidden;
}
#common_bar_wrap .sp_cbc_link a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
#common_bar_wrap .sp_cbc_link a .ic {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-size: 1.6rem;
	line-height: 1;
}
#common_bar_wrap .sp_cbc_link a .ic::after {
	content: "\f363";
	font-family: "Ionicons";
	font-size: 3rem;
	margin: 0 0 0 2.5vw;
}
#common_bar_wrap .sp_cbc_link a .txt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

/*SNS
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#common_bar_wrap .cbc_sns {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 15vw;
	padding: 0 0 0 5vw;
}
#common_bar_wrap .cbc_sns .txt {
	display: none;
}
#common_bar_wrap .addtoany_shortcode {
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 1vw 0;
}
#common_bar_wrap .addtoany_shortcode::-webkit-scrollbar {
	height: 4px;
}
#common_bar_wrap .addtoany_shortcode::-webkit-scrollbar-track {
	background-color: rgba(0, 0, 0, 0);
}
#common_bar_wrap .cbc_sns .addtoany_list {
	line-height: 1 !important;
}
#common_bar_wrap .cbc_sns .addtoany_list.a2a_kit_size_32 a {
	font-size: 0;
}
#common_bar_wrap .cbc_sns .addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service) > span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10vw;
	height: 10vw;
	line-height: 1;
	border-radius: 50%;
}
#common_bar_wrap .cbc_sns .addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service) > span svg {
	width: 7.5vw;
}
#common_bar_wrap .cbc_sns .addtoany_list a,
.widget .addtoany_list a {
	padding: 0;
	margin: 0 5vw 0 0;
}
/*///////////////////////////////////*/

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
LocalKing
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.lk_wrap {
	width: 100%;
}
.lk_area {
	padding: 7.5vw 3.75vw 2.5vw;
}
.lk_area ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}
.lk_area li {
	position: relative;
	margin-bottom: 5vw;
}
.lk_area li::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	display: inline-block;
	width: 0.15625vw;
	height: 2.5vw;
}
.lk_area li:last-child:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	display: inline-block;
	width: 0.15625vw;
	height: 2.5vw;
}
.lk_area li a {
	font-size: 1.2rem;
	margin: 0 3.75vw;
}
/*///////////////////////////////////*/

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
パスワード保護
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.pw_box {
	padding: 0 0 10vw;
	text-align: center;
}
.pw_box .pw_txt {
	padding: 0;
	text-align: left;
}
#shop_area .pw_box .pw_txt {
	white-space: pre-wrap;
}

.pw_box span {
	font-size: 1.6rem;
}
/*入力欄*/
.pw_box input[type="password"] {
	width: 50vw;
	height: 10vw;
	box-sizing: border-box;
	padding: 0.625vw;
	font-size: max(1.6rem, 16px);
}
/*送信ボタン*/
.pw_box input[type="submit"] {
	display: block;
	width: 30vw;
	height: 10vw;
	font-size: 1.6rem;
	letter-spacing: 2px;
	margin: 10vw auto 0;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
検索結果（投稿、全て）
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.search_title {
	text-align: center;
	margin: 0 0 6.25vw;
}

/*検索結果が無かった場合*/
#archive_cont.search_none_cont {
	display: block;
	text-align: center;
}
.search_none_box {
	text-align: center;
	margin-bottom: 12.5vw;
}

#archive_cont.search_none_cont #widget_searchform {
	margin: 0 auto;
}

/*　===============
検索
===============　*/
#widget_searchform {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border-top: none;
}
#widget_keywords {
	width: 100%;
	height: 10vw;
	padding: 1.25vw 10vw 1.25vw 1.25vw;
	border: none;
	background: #f4f4f4;
}
#widget_keywords:placeholder-shown {
	font-size: 1.6rem;
}
#widget_searchBtn {
	position: absolute;
	top: 0;
	right: 0;
	width: 10vw;
	height: 10vw;
	font-family: "Ionicons";
	font-size: 2rem;
	border: none;
	background: none;
}

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

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
404ページ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.at_errer_page_404 .addtoany_share_save_container {
	display: none;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
タブレット・スマホ寄り
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
@media screen and (min-width: 641px) and (max-width: 959px) {
	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
共通
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.allwrapper {
		width: 100%;
		position: relative;
		overflow: hidden;
		padding: 0;
	}
	.inner {
		width: 100%;
		padding: 0 24px 0 12px;
		margin: 0 auto;
	}
	.padd_head {
		padding: 80px 0 0;
	}

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

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ヘッダー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#upper {
		position: fixed;
		width: 100%;
		height: 80px;
	}
	#upper .head_inner {
		display: flex;
		flex-wrap: wrap;
		padding: 0 80px;
	}

	/*ロゴ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#upper .logo {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		overflow: hidden;
		margin: 0 auto;
	}
	/*ロゴ画像*/
	#upper .logo img {
		margin-right: 8px;
	}
	.WTT #upper .logo .pc_up {
		display: none;
	}
	.WTT #upper .logo .sp_up {
		display: block;
	}
	/*ロゴテキスト*/
	#upper .logo .site_logo_wrap {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#upper .logo .txt_wrap {
		display: flex;
		flex-direction: column;
	}
	/*メインテキスト*/
	#upper .logo .main_txt {
		line-height: 1;
		white-space: pre;
	}
	/*サブテキスト*/
	#upper .logo .sub_txt {
		line-height: 1;
	}
	#upper .logo .sub_txt.top {
		margin-bottom: 8px;
	}
	#upper .logo .sub_txt.bottom {
		margin-top: 8px;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ハンバーガー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.menu-trigger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		width: 80px;
		height: 80px;
		text-align: center;
		z-index: 10000;
	}
	.trigger_wrap {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-between;
		width: 48px;
		height: 32px;
	}
	/*3本線*/
	.trigger_wrap span {
		display: block;
		width: 100%;
		height: 2px;
		transition: all 0.4s;
	}
	.menu-trigger span:nth-of-type(1) {
		width: 100%;
	}
	.menu-trigger span:nth-of-type(2) {
		width: 70%;
	}
	.menu-trigger span:nth-of-type(3) {
		width: 50%;
	}
	.menu-trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(15px) rotate(-315deg);
		transform: translateY(15px) rotate(-315deg);
	}
	.menu-trigger.active span:nth-of-type(2) {
		opacity: 0;
	}
	.menu-trigger.active span:nth-of-type(3) {
		width: 100%;
		-webkit-transform: translateY(-15px) rotate(315deg);
		transform: translateY(-15px) rotate(315deg);
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
グローバルナビ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WTT #Gnav {
		display: none;
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		height: calc(100vh - 80px);
		overflow: auto;
		padding: 0 0 64px;
		font-size: 0;
		z-index: 2000;
	}

	/*グローバルナビ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#Gnav.pc_nav .g_nav_menu {
		padding: 0 24px;
		margin-bottom: 48px;
	}
	#Gnav.pc_nav .g_nav_menu li {
		position: relative;
	}
	/*サブメニュー設定*/
	#Gnav.pc_nav .g_nav_menu .sub-menu {
		display: none;
	}
	#Gnav.pc_nav .g_nav_menu > li > ul.sub-menu,
	#Gnav.pc_nav .g_nav_menu > li > ul.sub-menu > li > ul.sub-menu,
	#Gnav.pc_nav .g_nav_menu > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu {
		padding: 0 0 0 32px;
	}
	/*aタグ設定*/
	#Gnav.pc_nav .g_nav_menu a {
		position: relative;
		display: flex;
		align-items: center;
		width: 100%;
		height: 64px;
		padding: 0 0 0 16px;
		font-size: 1.8rem;
		letter-spacing: 1px;
		line-height: 1;
		border-bottom-width: 1px;
		border-bottom-style: solid;
	}
	#Gnav.pc_nav ul.g_nav_menu a span {
		font-size: 1.4rem;
		padding: 2px 0 0 32px;
	}
	/*OPENボタン*/
	#Gnav.pc_nav .g_nav_menu .has-child > .btn-icon,
	#Gnav.pc_nav .g_nav_menu .has-grand > .btn-icon {
		position: absolute;
		top: 0;
		right: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 48px;
		height: 64px;
		cursor: pointer;
	}
	#Gnav.pc_nav .g_nav_menu .has-child > .btn-icon::before,
	#Gnav.pc_nav .g_nav_menu .has-grand > .btn-icon::before {
		content: "add";
		font-family: "Material Icons";
		font-size: 2rem;
		font-weight: 500;
	}
	#Gnav.pc_nav .g_nav_menu .has-child.active > .btn-icon::before,
	#Gnav.pc_nav .g_nav_menu .has-grand.active > .btn-icon::before {
		content: "remove";
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
head_gear
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#upper .head_gear {
		position: absolute;
		top: 20px;
		right: 20px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin: 0 0 0 auto;
	}

	/*タイプC*/
	#upper.Htc .head_gear {
		position: absolute;
		top: 16px;
		right: 20px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin: 0 0 0 auto;
	}
	#upper.Htc .head_gear .tel_wrap {
		display: none;
	}

	/*ヘッダー電話番号
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WTT .tel_wrap,
	.WTT .sp_tel_wrap.onft {
		display: none;
	}
	.sp_tel_wrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		width: 86%;
		padding: 5vw 0;
		margin: 15vw auto 0;
		border-width: 1px;
		border-style: solid;
	}
	.sp_tel_wrap::before {
		content: "\e0b0";
		font-family: "Material Icons";
		font-size: 4rem;
		transform: rotate(16deg);
	}
	.sp_tel_wrap .tel_cont {
		padding: 0 0 0 1.25vw;
	}
	.sp_tel_wrap .tel_link {
		font-size: 3rem;
	}
	.sp_tel_wrap .tel_txt {
		font-size: 1.6rem;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
C_gear：タイプC
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.C_gear {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin: 15vw auto;
	}
	/*電話
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.C_gear .tel_wrap {
		padding: 3.75vw 6.25vw;
		border: 1px solid;
	}

	.WTT .C_gear .tel_wrap.onft {
		display: none;
	}
	.C_gear .tel_wrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.C_gear .tel_wrap::before {
		content: "\e0b0";
		font-family: "Material Icons";
		font-size: 4rem;
		transform: rotate(16deg);
	}
	.C_gear .tel_cont {
		padding: 0 0 0 1.25vw;
	}
	.C_gear .tel_cont .tel_link {
		display: block;
		font-size: 3rem;
		line-height: 1;
		margin: 0 0 8px;
	}
	.C_gear .tel_cont .tel_txt {
		font-size: 1.6rem;
		line-height: 1;
	}
	.C_gear .head_ic_list {
		width: 40%;
	}

	/*アイコンリスト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WT .head_ic_list.onft {
		display: none;
	}
	.head_ic_list {
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		margin: 0 0 0 40px;
	}
	.head_ic_list .hil_box {
		position: relative;
		width: 24px;
		height: auto;
		margin: 20px 24px 0 0;
	}
	.head_ic_list .hil_box:last-child {
		margin: 0;
	}
	.head_ic_list .hil_box .ic_box {
		display: block;
		cursor: pointer;
	}

	/*カート*/
	.head_ic_list .hil_box .woo_cc {
		position: absolute;
		top: -10px;
		left: -16px;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 20px;
		height: 20px;
		color: #fff;
		font-size: 1.4rem;
		border-radius: 50%;
		background: #000;
	}

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

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
パンくず
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#bread_wrap {
		overflow: hidden;
		padding: 0 3.75vw;
		margin: -2.5vw auto 0;
	}
	#bread_wrap .bread_area {
		display: inline-block;
		height: 48px;
		z-index: 10000;
	}
	#bread_wrap .bread_mask {
		height: 100%;
		padding: 0 2.5vw;
	}
	#bread_wrap .bread_cont {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		height: 100%;
		overflow-x: auto;
		overflow-y: hidden;
	}
	#bread_wrap .breadcrumbs {
		white-space: nowrap;
		font-size: 1.4rem;
	}
	#bread_wrap .breadcrumbs > span {
		margin: 0 1.25vw;
	}
	#bread_wrap .breadcrumbs > span:first-child {
		margin: 0 1.25vw 0 0;
	}
	#bread_wrap .breadcrumbs > span:last-child {
		margin: 0 0 0 1.25vw;
	}
	#bread_wrap span,
	#bread_wrap a {
		font-size: 1.4rem;
	}

	/*LP用*/
	.lp_bread {
		margin-bottom: 5vw;
	}
	.lp_bread.cb_link_4 {
		margin-bottom: 15vw;
	}
	.lp_bread.cb_sns_4 {
		margin-bottom: 12vw;
	}
	.lp_bread #bread_wrap {
		margin: 0 auto;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
フッター
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.under_wrap {
		position: relative;
	}
	#under {
		background-position: center center;
		background-size: cover;
	}
	#under.foot_set.tabcss {
		background-image: none;
	}

	#under .foot_inner {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	/*共通バーがある場合*/
	#under .foot_inner.cb_on {
		padding: 0 0 130px;
	}
	/*最適化がある場合*/
	#under .foot_inner.lk_on {
		padding: 0;
	}
	/*共通バー、最適化がある場合*/
	#under .foot_inner.cb_on.lk_on {
		padding: 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
info_box
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WTT .info_box {
		padding: 80px 64px;
		text-align: center;
	}

	/*フッターロゴ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.foot_logo {
		overflow: hidden;
		margin: 0 0 40px;
	}
	/*ロゴテキスト*/
	.foot_logo .site_logo_wrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
	}
	.foot_logo img {
		margin-right: 8px;
	}
	.foot_logo .txt_wrap {
		display: flex;
		flex-direction: column;
	}
	/*メインテキスト*/
	.foot_logo .main_txt {
		line-height: 1;
	}
	/*サブテキスト*/
	.foot_logo .sub_txt {
		line-height: 1;
	}
	.foot_logo .sub_txt.top {
		margin-bottom: 8px;
	}
	.foot_logo .sub_txt.bottom {
		margin-top: 8px;
	}

	/*アドレス*/
	.foot_add_txt {
		font-size: 1.6rem;
		line-height: 2;
		margin: 0 0 40px;
		text-align: center;
	}
	.foot_add_txt p {
		font-size: 1.6rem;
	}

	/*SNS
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.sns_cont {
		overflow: hidden;
	}
	.sns_cont .sns_list {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		list-style: none;
		margin: 0;
		padding: 0;
	}
	/*li*/
	.sns_cont .sns_list li {
		width: 24px;
		height: 24px;
		overflow: hidden;
		margin: 0 24px 0 0;
	}
	.sns_cont .sns_list li a {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.sns_cont .sns_list li img {
		max-width: 100%;
		max-height: 100%;
	}
	/*フッター右側
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.fr_cont {
		width: 100%;
	}

	/*under_nav_sp
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WTT .under_nav {
		padding: 80px 32px;
	}
	.WTT .under_nav ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.WTT .under_nav .foot_list {
		padding: 0;
	}
	.WTT .under_nav .nav_wrap:first-child .foot_list {
		border-top-width: 1px;
		border-top-style: solid;
	}
	.WTT .under_nav .foot_list li {
		position: relative;
	}
	.WTT .under_nav .foot_list li a {
		display: flex;
		align-items: center;
		font-size: 1.6rem;
		width: 100%;
		height: 64px;
		padding: 0 0 0 16px;
		border-bottom-width: 1px;
		border-bottom-style: solid;
	}
	.WTT .under_nav .foot_list li a span {
		font-size: 1.2rem;
		padding: 8px 0 0 8px;
	}

	/*サブメニュー非表示*/
	.WTT .under_nav .foot_list li .sub-menu {
		display: none;
	}
	.WTT .under_nav .foot_list > li > .sub-menu,
	.WTT .under_nav .foot_list > li > .sub-menu > li > .sub-menu,
	.WTT .under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > .sub-menu,
	.WTT .under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > .sub-menu {
		padding: 0 0 0 16px;
	}

	/*子のa*/
	.WTT .under_nav .foot_list > li > .sub-menu > li > a,
	.WTT .under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > a,
	.WTT .under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a,
	.WTT .under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a {
		font-size: 1.6rem;
		padding: 0 0 0 16px;
	}
	/*OPENボタン*/
	.WTT .under_nav .foot_list .has-child > .btn-icon,
	.WTT .under_nav .foot_list .has-grand > .btn-icon {
		position: absolute;
		top: 0;
		right: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 64px;
		height: 64px;
		cursor: pointer;
	}
	.WTT .under_nav .foot_list .has-child > .btn-icon::before,
	.WTT .under_nav .foot_list .has-grand > .btn-icon::before {
		content: "add";
		font-family: "Material Icons";
		font-size: 2rem;
		font-weight: 500;
	}
	.WTT .under_nav .foot_list .has-child.active > .btn-icon::before,
	.WTT .under_nav .foot_list .has-grand.active > .btn-icon::before {
		content: "remove";
	}
	/*///////////////////////////////////*/

	/*フリー記入
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.under_free {
		width: 100%;
		padding: 5vw;
	}

	/*地図*/
	.under_free iframe {
		width: 100%;
		height: 420px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
Bottom cont
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.bottom_cont {
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 35px;
		padding: 8px 0;
		z-index: 10;
	}
	.bottom_cont.cb_on {
		padding: 8px 0;
	}
	.bottom_cont .foot_bottom_inner {
		display: flex;
		justify-content: space-between;
		width: calc(100% - 32px);
		margin: 0 auto;
	}
	/*特商・プライバシー・利用規約*/
	.bottom_cont .bottom_menu {
		margin: 0;
	}
	.bottom_cont .bottom_menu a {
		font-size: 1.2rem;
		letter-spacing: inherit;
	}
	.bottom_cont .bottom_menu span {
		padding: 0 4px;
	}
	/*コピーライト*/
	.bottom_cont .c_r {
		font-size: 1.2rem;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
fix_cont
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WTT .fix_cont.fc_sp {
		display: none;
	}
	.fix_cont {
		position: fixed;
		bottom: 35px;
		right: 0;
		display: block;
		width: 64px;
		height: auto;
	}
	/*表示非表示*/
	.WTT .fix_onf_wrap.onft {
		display: none;
	}
	.fix_wrap {
		width: 100%;
		height: 64px;
	}
	.fix_box {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}
	.fix_box img {
		width: 32px;
		height: auto;
	}
	/*カート*/
	.fix_wrap .woo_cc {
		top: -8px;
		left: -8px;
		width: 24px;
		height: 24px;
	}

	/*ページトップ*/
	#page-top a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}
	#page-top a img {
		width: 27px;
		height: auto;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
固定ページ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#page_wrap {
	}
	/*デフォルトテンプレート*/
	#page_area.page_default {
		padding: 0 3.75vw;
	}
	/*ワイドテンプレート*/
	#page_area.page_wide {
		overflow: hidden;
		padding: 0 3.75vw;
	}
	/*フルテンプレート*/
	#page_area.page_full {
		overflow: hidden;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
共通バー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#common_bar_wrap {
		position: fixed;
		bottom: 0;
		width: 100%;
		z-index: 1000;
	}
	#common_bar_wrap .cbc_cont {
		width: 100%;
		height: 100%;
		padding: 0 32px;
	}
	/*スマホ用*/
	#common_bar_wrap .sp_cbc_link {
		display: none;
	}
	/*PC用*/
	#common_bar_wrap .pc_cbc_link {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 100%;
		max-width: 1280px;
		height: 96px;
		padding: 16px 0;
		margin: 0 auto;
	}
	#common_bar_wrap .entry {
		display: flex;
		align-items: center;
		width: calc(100% - 46%);
	}
	/*画像*/
	#common_bar_wrap .entry .img_box {
		position: relative;
		width: 64px;
		overflow: hidden;
		margin: 0 32px 0 0;
	}
	#common_bar_wrap .entry .img_box::before {
		content: "";
		display: block;
		padding-top: 100%;
	}
	#common_bar_wrap .entry .img_box img {
		position: absolute;
		top: 0;
	}
	/*文字*/
	#common_bar_wrap .entry .txt_wrap {
		display: flex;
		flex-direction: column;
		/* width: calc(100% - 96px); */
		width: fit-content;
		line-height: 1.4;
	}
	/*タイトル*/
	#common_bar_wrap .entry .txt_wrap .title {
		font-size: 2.4rem;
		margin: 0 0 8px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		overflow: hidden;
	}
	/*テキスト*/
	#common_bar_wrap .entry .txt_wrap .txt {
		font-size: 1.6rem;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		overflow: hidden;
	}

	/*ボタン*/
	#common_bar_wrap .cbc_btn {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 42%;
		height: 64px;
		padding: 0 16px;
	}
	#common_bar_wrap .cbc_btn .ic {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
		font-size: 1.6rem;
		line-height: 1;
	}
	#common_bar_wrap .cbc_btn .ic::after {
		content: "\f363";
		font-family: "Ionicons";
		font-size: 3rem;
		margin: 0 0 0 16px;
	}
	#common_bar_wrap .cbc_btn .txt {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		overflow: hidden;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
検索モーダル
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#m_search_area {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.8);
		z-index: 10000;
	}
	#m_search_area .wrap {
		width: 100%;
		height: 100%;
	}
	#m_search_area .cont {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		width: 90%;
		height: 100%;
		margin: 0 auto;
	}
	#m_search_area .cwrap {
		position: absolute;
		width: 100%;
		height: 100%;
		z-index: 5;
	}
	#m_search_area .box {
		position: relative;
		width: 100%;
		margin: 0 auto;
		z-index: 10;
	}
	/*検索フォーム
  ////////////////////////////////////*/
	#m_searchform {
		position: relative;
		display: block;
		width: 100%;
		padding: 0 !important;
		border-top: none;
	}
	/*検索リスト*/
	#m_searchform .search_select_box {
		margin: 0 0 40px;
	}
	/*検索文言*/
	#m_searchform .search_txt {
		margin: 0 0 16px;
	}
	/*select*/
	#m_searchform .postform {
		height: 48px;
		padding: 8px;
		border: 0;
	}
	/*入力欄・ボタンを囲うもの*/
	#m_search_area .m_wrap {
		position: relative;
	}
	/*入力*/
	#m_keywords {
		height: 64px;
		padding: 8px 64px 8px 8px;
	}
	/*ボタン*/
	#m_searchBtn {
		width: 64px;
	}

	/*閉じるボタン*/
	#m_search_area #m_close {
		margin: 64px 0 0;
	}
	#m_search_area #m_close p {
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 1.4rem;
		line-height: 1;
		cursor: pointer;
	}
	#m_search_area #m_close span {
		font-family: "Ionicons";
		font-size: 3rem;
		margin: 0 8px 0 0;
	}
	/*///////////////////////////////////*/

	/*SNS
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#common_bar_wrap .cbc_sns {
		width: 100%;
		max-width: 1280px;
		height: 64px;
		margin: 0 auto;
	}
	#common_bar_wrap .cbc_sns .txt {
		display: block;
		font-size: 1.6rem;
		margin: 0 24px 0 0;
	}
	#common_bar_wrap .cbc_sns .addtoany_list {
		line-height: 1 !important;
	}
	#common_bar_wrap .cbc_sns .addtoany_list.a2a_kit_size_32 a {
		font-size: 0;
	}
	#common_bar_wrap .cbc_sns .addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service) > span {
		width: 40px;
		height: 40px;
	}
	#common_bar_wrap .cbc_sns .addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service) > span svg {
		width: 32px;
	}
	#common_bar_wrap .cbc_sns .addtoany_list a,
	.widget .addtoany_list a {
		padding: 0;
		margin: 0 32px 0 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
地域王
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.lk_area {
		width: 100%;
		margin: 0 auto;
		padding: 48px 32px 80px;
	}
	/*共通バーあり*/
	.lk_area.cb_on {
		padding: 48px 32px 160px;
	}
	.lk_area li {
		margin-bottom: 10px;
	}
	.lk_area li::before {
		width: 1px;
		height: 16px;
	}
	.lk_area li:last-child:after {
		width: 1px;
		height: 16px;
	}
	.lk_area li a {
		font-size: 12px;
		margin: 0 24px;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
パスワード保護
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.pw_box {
		padding: 0 0 64px;
	}
	.pw_box .pw_txt {
		padding: 0;
		text-align: left;
	}
	.pw_box form {
		display: flex;
		align-items: center;
	}
	.pw_box span {
		font-size: 1.6rem;
	}
	/*入力欄*/
	.pw_box input[type="password"] {
		width: 50%;
		height: 40px;
		padding: 8px;
		margin: 0 32px 0 0;
	}
	/*送信ボタン*/
	.pw_box input[type="submit"] {
		display: block;
		width: 120px;
		height: 40px;
		margin: 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
検索結果（投稿、全て）
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

	/*　===============
検索
===============　*/
	#widget_searchform {
		max-width: 600px;
	}

	/*ここまで*/
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
スマホ・横
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
共通
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.Device-SP.WTT .inner {
	padding: 0 64px 0 42px;
}

/*under_nav_sp
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.Device-SP.WTT .under_nav {
	padding: 80px 80px;
}
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
固定ページ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.Device-SP.WTT #page_area.page_default,
.Device-SP.WTT #page_area.page_wide {
	padding: 0 80px;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
タブレット・PC寄り
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
@media screen and (min-width: 960px) and (max-width: 1279px) {
	/*ここから*/
	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
共通
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.allwrapper {
		width: 100%;
		position: relative;
		overflow: hidden;
		padding: 0;
	}

	.inner {
		width: 100%;
		padding: 0 40px;
		margin: 0 auto;
	}

	.padd_head {
		padding: 80px 0 0;
	}

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

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ヘッダー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#upper {
		position: fixed;
		width: 100%;
		height: 80px;
	}
	#upper .head_inner {
		display: flex;
		flex-wrap: wrap;
		padding: 0 80px;
	}

	/*ロゴ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#upper .logo {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		width: auto;
		overflow: hidden;
		margin: 0 auto;
	}
	/*ロゴ画像*/
	#upper .logo img {
		margin-right: 8px;
	}
	.WT #upper .logo .pc_up {
		display: none;
	}
	.WT #upper .logo .sp_up {
		display: block;
	}

	/*タイプB*/
	#upper.Htb .logo.T-B {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		overflow: hidden;
		padding: 0;
	}

	/*ロゴテキスト*/
	#upper .logo .site_logo_wrap {
		display: flex;
		align-items: center;
	}
	#upper .logo .txt_wrap {
		display: flex;
		flex-direction: column;
	}
	/*メインテキスト*/
	#upper .logo .main_txt {
		line-height: 1;
		white-space: pre;
	}
	/*サブテキスト*/
	#upper .logo .sub_txt {
		line-height: 1;
	}
	#upper .logo .sub_txt.top {
		margin-bottom: 8px;
	}
	#upper .logo .sub_txt.bottom {
		margin-top: 8px;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ハンバーガー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.menu-trigger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		width: 80px;
		height: 80px;
		text-align: center;
		z-index: 10000;
	}
	.trigger_wrap {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-between;
		width: 48px;
		height: 32px;
	}
	/*3本線*/
	.trigger_wrap span {
		display: block;
		width: 100%;
		height: 2px;
		transition: all 0.4s;
	}
	.menu-trigger span:nth-of-type(1) {
		width: 100%;
	}
	.menu-trigger span:nth-of-type(2) {
		width: 70%;
	}
	.menu-trigger span:nth-of-type(3) {
		width: 50%;
	}
	.menu-trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(15px) rotate(-315deg);
		transform: translateY(15px) rotate(-315deg);
	}
	.menu-trigger.active span:nth-of-type(2) {
		opacity: 0;
	}
	.menu-trigger.active span:nth-of-type(3) {
		width: 100%;
		-webkit-transform: translateY(-15px) rotate(315deg);
		transform: translateY(-15px) rotate(315deg);
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
グローバルナビ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#Gnav.pc_nav {
		display: none;
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		height: calc(100vh - 80px);
		overflow: auto;
		padding: 0 0 64px;
		font-size: 0;
		z-index: 2000;
	}

	/*グローバルナビ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#Gnav ul,
	#Gnav ol {
		list-style: none;
		padding: 0;
		margin: 0;
	}
	#Gnav.pc_nav .g_nav_menu {
		padding: 0 24px;
		margin-bottom: 48px;
	}
	#Gnav.pc_nav .g_nav_menu li {
		position: relative;
	}
	/*サブメニュー設定*/
	#Gnav.pc_nav .g_nav_menu .sub-menu {
		display: none;
	}
	#Gnav.pc_nav .g_nav_menu > li > ul.sub-menu,
	#Gnav.pc_nav .g_nav_menu > li > ul.sub-menu > li > ul.sub-menu,
	#Gnav.pc_nav .g_nav_menu > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu {
		padding: 0 0 0 32px;
	}
	/*aタグ設定*/
	#Gnav.pc_nav .g_nav_menu a {
		position: relative;
		display: flex;
		align-items: center;
		width: 100%;
		height: 64px;
		padding: 0 0 0 16px;
		font-size: 1.8rem;
		letter-spacing: 1px;
		line-height: 1;
		border-bottom-width: 1px;
		border-bottom-style: solid;
	}
	#Gnav.pc_nav ul.g_nav_menu a span {
		font-size: 1.4rem;
		padding: 2px 0 0 32px;
	}
	/*OPENボタン*/
	#Gnav.pc_nav .g_nav_menu .has-child > .btn-icon,
	#Gnav.pc_nav .g_nav_menu .has-grand > .btn-icon {
		position: absolute;
		top: 0;
		right: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 48px;
		height: 64px;
		cursor: pointer;
	}
	#Gnav.pc_nav .g_nav_menu .has-child > .btn-icon::before,
	#Gnav.pc_nav .g_nav_menu .has-grand > .btn-icon::before {
		content: "add";
		font-family: "Material Icons";
		font-size: 2rem;
		font-weight: 500;
	}
	#Gnav.pc_nav .g_nav_menu .has-child.active > .btn-icon::before,
	#Gnav.pc_nav .g_nav_menu .has-grand.active > .btn-icon::before {
		content: "remove";
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
head_gear
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#upper .head_gear {
		position: absolute;
		top: 20px;
		right: 20px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin: 0 0 0 auto;
	}

	/*タイプC*/
	#upper.Htc .head_gear {
		position: absolute;
		top: 16px;
		right: 40px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin: 0 0 0 auto;
	}
	#upper.Htc .head_gear .tel_wrap {
		display: none;
	}

	/*電話
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WT .tel_wrap {
		display: none;
	}
	.tel_wrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.tel_wrap::before {
		content: "call";
		font-family: "Material Icons";
		font-size: 4rem;
		transform: rotate(16deg);
	}
	.tel_cont {
		padding: 0 0 0 4px;
	}
	.tel_cont .tel_link {
		display: block;
		font-size: 2.4rem;
		line-height: 1;
		margin: 0 0 8px;
	}
	.tel_cont .tel_txt {
		font-size: 1.2rem;
		line-height: 1;
	}

	/*ヘッダー電話番号sp
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WT .sp_tel_wrap.onft {
		display: none;
	}

	.sp_tel_wrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		width: fit-content;
		padding: 16px 40px;
		margin: 64px auto;
		border-width: 1px;
		border-style: solid;
	}
	.sp_tel_wrap::before {
		content: "\e0b0";
		font-family: "Material Icons";
		font-size: 5rem;
		transform: rotate(16deg);
	}
	.sp_tel_wrap .tel_cont {
		padding: 0 0 0 1.25vw;
	}
	.sp_tel_wrap .tel_link {
		font-size: 3rem;
	}
	.sp_tel_wrap .tel_txt {
		font-size: 1.6rem;
	}
	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
C_gear：タイプC
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.C_gear {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin: 64px auto;
	}
	/*電話
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.C_gear .tel_wrap {
		padding: 24px 40px;
	}

	.WT .C_gear .tel_wrap.onft {
		display: none;
	}
	.C_gear .tel_wrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.C_gear .tel_wrap::before {
		content: "\e0b0";
		font-family: "Material Icons";
		font-size: 4rem;
		transform: rotate(16deg);
	}
	.C_gear .tel_cont {
		padding: 0 0 0 4px;
	}
	.C_gear .tel_cont .tel_link {
		display: block;
		font-size: 3rem;
		line-height: 1;
		margin: 0 0 8px;
	}
	.C_gear .tel_cont .tel_txt {
		font-size: 1.6rem;
		line-height: 1;
	}
	.C_gear .head_ic_list {
		width: 40%;
	}

	/*アイコンリスト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WT .head_ic_list.onft {
		display: none;
	}
	.head_ic_list {
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		margin: 0 0 0 40px;
	}
	.head_ic_list .hil_box {
		position: relative;
		width: 24px;
		height: auto;
		margin: 20px 24px 0 0;
	}
	.head_ic_list .hil_box:last-child {
		margin: 0;
	}
	.head_ic_list .hil_box .ic_box {
		display: block;
		cursor: pointer;
	}

	/*カート*/
	.head_ic_list .hil_box .woo_cc {
		position: absolute;
		top: -10px;
		left: -16px;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 20px;
		height: 20px;
		color: #fff;
		font-size: 1.4rem;
		border-radius: 50%;
		background: #000;
	}

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

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
パンくず
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#bread_wrap {
		overflow: hidden;
		padding: 0 40px;
		margin: -16px auto 0;
	}
	#bread_wrap .bread_area {
		display: inline-block;
		height: 48px;
	}
	#bread_wrap .bread_mask {
		height: 100%;
		padding: 0 16px;
	}
	#bread_wrap .bread_cont {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		height: 100%;
		overflow-x: auto;
		overflow-y: hidden;
	}
	#bread_wrap .breadcrumbs {
		white-space: nowrap;
		font-size: 1.6rem;
	}
	#bread_wrap .breadcrumbs > span {
		margin: 0 8px;
	}
	#bread_wrap .breadcrumbs > span:first-child {
		margin: 0 8px 0 0;
	}
	#bread_wrap .breadcrumbs > span:last-child {
		margin: 0 0 0 8px;
	}
	#bread_wrap span,
	#bread_wrap a {
		font-size: 1.6rem;
	}
	/*LP用*/
	.lp_bread {
		margin-bottom: 40px;
	}
	.lp_bread.cb_link_4 {
		margin-bottom: 120px;
	}
	.lp_bread.cb_sns_4 {
		margin-bottom: 80px;
	}

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

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
フッター
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.under_wrap {
		position: relative;
	}
	#under {
		background-position: center center;
		background-size: cover;
	}
	#under .foot_inner {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
		flex-direction: row;
		width: 100%;
		padding: 80px 40px 112px;
		margin: 0 auto;
	}
	/*共通バーがある場合*/
	#under .foot_inner.cb_on {
		padding: 80px 80px 208px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
info_box
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#under .info_box {
		width: 32%;
	}

	/*フッターロゴ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.foot_logo {
		overflow: hidden;
		margin: 0 0 40px;
	}
	/*ロゴテキスト*/
	.foot_logo .site_logo_wrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
	}
	.foot_logo img {
		margin-right: 8px;
	}
	.foot_logo .txt_wrap {
		display: flex;
		flex-direction: column;
	}
	/*メインテキスト*/
	.foot_logo .main_txt {
		line-height: 1;
	}
	/*サブテキスト*/
	.foot_logo .sub_txt {
		line-height: 1;
	}
	.foot_logo .sub_txt.top {
		margin-bottom: 8px;
	}
	.foot_logo .sub_txt.bottom {
		margin-top: 8px;
	}

	/*アドレス*/
	.foot_add_txt {
		font-size: 1.6rem;
		line-height: 2;
		margin: 0 0 40px;
	}
	.foot_add_txt p {
		font-size: 1.6rem;
	}

	/*SNS
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.sns_cont {
		overflow: hidden;
	}
	.sns_cont .sns_list {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		list-style: none;
		margin: 0;
		padding: 0;
	}
	/*li*/
	.sns_cont .sns_list li {
		width: 24px;
		height: 24px;
		overflow: hidden;
		margin: 0 24px 0 0;
	}
	.sns_cont .sns_list li a {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.sns_cont .sns_list li img {
		max-width: 100%;
		max-height: 100%;
	}

	/*フッター右側
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.fr_cont {
		width: 64%;
		padding: 0;
	}

	/*under_nav
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.under_nav {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	.under_nav .nav_wrap {
		width: 30%;
	}
	.under_nav .center_cont {
		margin: 0 5%;
	}
	.under_nav ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.under_nav .foot_list {
		padding: 0;
	}
	.under_nav .foot_list li {
		position: relative;
	}
	.under_nav .foot_list li a {
		display: flex;
		align-items: center;
		font-size: 2rem;
		width: 100%;
		height: 64px;
		padding: 0 0 0 4px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	}
	.under_nav .foot_list li a span {
		font-size: 1.2rem;
		padding: 8px 0 0 8px;
	}

	/*サブメニュー*/
	.under_nav .foot_list > li > .sub-menu,
	.under_nav .foot_list > li > .sub-menu > li > .sub-menu,
	.under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > .sub-menu,
	.under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > .sub-menu {
		padding: 8px 0 0 24px;
	}

	/*子のa*/
	.under_nav .foot_list > li > .sub-menu > li > a,
	.under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > a,
	.under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a,
	.under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a {
		font-size: 1.6rem;
		height: auto;
		min-height: 32px;
		border: none;
	}
	/*///////////////////////////////////*/

	/*フリー記入
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.under_free {
		width: 100%;
		height: auto;
		max-height: 420px;
		overflow: auto;
		padding: 0;
		margin-bottom: 24px;
	}

	/*地図*/
	.under_free iframe {
		width: 100%;
		height: 420px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
Bottom cont
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.bottom_cont {
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 35px;
		padding: 8px 0;
		z-index: 10;
	}
	.bottom_cont.cb_on {
		padding: 8px 0;
	}
	.bottom_cont .foot_bottom_inner {
		display: flex;
		justify-content: space-between;
		width: calc(100% - 32px);
		margin: 0 auto;
	}
	/*特商・プライバシー・利用規約*/
	.bottom_cont .bottom_menu {
		margin: 0;
	}
	.bottom_cont .bottom_menu a {
		font-size: 1.2rem;
		letter-spacing: inherit;
	}
	.bottom_cont .bottom_menu span {
		padding: 0 4px;
	}
	/*コピーライト*/
	.bottom_cont .c_r {
		font-size: 1.2rem;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
fix_cont
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WT .fix_cont.fc_sp {
		display: none;
	}
	.fix_cont {
		position: fixed;
		bottom: 35px;
		right: 0;
		display: block;
		width: 64px;
		height: auto;
	}
	/*表示非表示*/
	.WT .fix_onf_wrap.onft {
		display: none;
	}
	.fix_wrap {
		width: 100%;
		height: 64px;
	}
	.fix_box {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}
	.fix_box img {
		width: 32px;
		height: auto;
	}
	/*カート*/
	.fix_wrap .woo_cc {
		top: -8px;
		left: -8px;
		width: 24px;
		height: 24px;
	}

	/*ページトップ*/
	#page-top a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}
	#page-top a img {
		width: 27px;
		height: auto;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
検索モーダル
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#m_search_area {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.8);
		z-index: 10000;
	}
	#m_search_area .wrap {
		width: 100%;
		height: 100%;
	}
	#m_search_area .cont {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		margin: 0 auto;
	}
	#m_search_area .box {
		width: 580px;
		margin: 0 auto;
	}
	/*検索フォーム
  ////////////////////////////////////*/
	#m_searchform {
		position: relative;
		display: block;
		width: 100%;
		padding: 0 !important;
		border-top: none;
	}
	/*検索リスト*/
	#m_searchform .search_select_box {
		display: flex;
		align-items: center;
		margin: 0 0 40px;
	}
	/*検索文言*/
	#m_searchform .search_txt {
		margin: 0 32px 0 0;
	}
	/*select*/
	#m_searchform .postform {
		width: 300px;
		height: 40px;
		padding: 8px;
		border: 0;
	}
	/*入力*/
	#m_keywords {
		width: 100%;
		height: 40px;
		padding: 8px 32px 8px 8px;
		border: none;
		background: #f4f4f4;
	}
	/*ボタン*/
	#m_searchBtn {
		width: 40px;
	}
	/*閉じるボタン*/
	#m_search_area #m_close {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin: 64px 0 0;
		color: #fff;
	}
	#m_search_area #m_close p {
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 1.4rem;
		line-height: 1;
		cursor: pointer;
	}
	#m_search_area #m_close span {
		font-family: "Ionicons";
		font-size: 3rem;
		margin: 0 8px 0 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
固定ページ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#page_wrap {
	}
	/*デフォルトテンプレート*/
	#page_area.page_default {
		width: 816px;
		margin: 0 auto;
	}
	/*ワイドテンプレート*/
	#page_area.page_wide {
		width: 100%;
		overflow: hidden;
		padding: 0 40px;
		margin: 0 auto;
	}
	/*フルテンプレート*/
	#page_area.page_full {
		width: 100%;
		overflow: hidden;
	}

	#page_cont {
		padding: 0;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
共通バー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#common_bar_wrap {
		position: fixed;
		bottom: 0;
		width: 100%;
		z-index: 1000;
	}
	#common_bar_wrap .cbc_cont {
		width: 100%;
		height: 100%;
		padding: 0 32px;
	}
	/*スマホ用*/
	#common_bar_wrap .sp_cbc_link {
		display: none;
	}
	/*PC用*/
	#common_bar_wrap .pc_cbc_link {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 100%;
		max-width: 1280px;
		height: 96px;
		padding: 16px 0;
		margin: 0 auto;
	}
	#common_bar_wrap .entry {
		display: flex;
		align-items: center;
		width: calc(100% - 424px);
	}
	/*画像*/
	#common_bar_wrap .entry .img_box {
		position: relative;
		width: 64px;
		overflow: hidden;
		margin: 0 32px 0 0;
	}
	#common_bar_wrap .entry .img_box::before {
		content: "";
		display: block;
		padding-top: 100%;
	}
	#common_bar_wrap .entry .img_box img {
		position: absolute;
		top: 0;
	}
	/*文字*/
	#common_bar_wrap .entry .txt_wrap {
		display: flex;
		flex-direction: column;
		/* width: calc(100% - 96px); */
		width: fit-content;
		line-height: 1.4;
	}
	/*タイトル*/
	#common_bar_wrap .entry .txt_wrap .title {
		font-size: 2.4rem;
		margin: 0 0 8px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		overflow: hidden;
	}
	/*テキスト*/
	#common_bar_wrap .entry .txt_wrap .txt {
		font-size: 1.6rem;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		overflow: hidden;
	}

	/*ボタン*/
	#common_bar_wrap .cbc_btn {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		max-width: 400px;
		height: 64px;
	}
	#common_bar_wrap .cbc_btn .ic {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
		font-size: 1.6rem;
		line-height: 1;
	}
	#common_bar_wrap .cbc_btn .ic::after {
		content: "\f363";
		font-family: "Ionicons";
		font-size: 3rem;
		margin: 0 0 0 16px;
	}
	#common_bar_wrap .cbc_btn .txt {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		overflow: hidden;
	}
	/*///////////////////////////////////*/

	/*SNS
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#common_bar_wrap .cbc_sns {
		width: 100%;
		max-width: 1280px;
		height: 64px;
		margin: 0 auto;
	}
	#common_bar_wrap .cbc_sns .txt {
		display: block;
		font-size: 1.6rem;
		margin: 0 24px 0 0;
	}
	#common_bar_wrap .cbc_sns .addtoany_list {
		line-height: 1 !important;
	}
	#common_bar_wrap .cbc_sns .addtoany_list.a2a_kit_size_32 a {
		font-size: 0;
	}
	#common_bar_wrap .cbc_sns .addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service) > span {
		width: 40px;
		height: 40px;
	}
	#common_bar_wrap .cbc_sns .addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service) > span svg {
		width: 32px;
	}
	#common_bar_wrap .cbc_sns .addtoany_list a,
	.widget .addtoany_list a {
		padding: 0;
		margin: 0 32px 0 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
地域王
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.lk_area {
		width: 100%;
		margin: 0 auto;
		padding: 48px 32px 80px;
	}
	/*共通バーあり*/
	.lk_area.cb_on {
		padding: 48px 32px 160px;
	}
	.lk_area li {
		margin-bottom: 10px;
	}
	.lk_area li::before {
		width: 1px;
		height: 16px;
	}
	.lk_area li:last-child:after {
		width: 1px;
		height: 16px;
	}
	.lk_area li a {
		font-size: 12px;
		margin: 0 24px;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
パスワード保護
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.pw_box {
		padding: 0 0 64px;
	}
	.pw_box .pw_txt {
		padding: 0;
		text-align: left;
	}
	.pw_box form {
		display: flex;
		align-items: center;
	}
	.pw_box span {
		font-size: 1.6rem;
	}
	/*入力欄*/
	.pw_box input[type="password"] {
		width: 50%;
		height: 40px;
		padding: 8px;
		margin: 0 32px 0 0;
	}
	/*送信ボタン*/
	.pw_box input[type="submit"] {
		display: block;
		width: 120px;
		height: 40px;
		margin: 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
検索結果（投稿、全て）
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.search_title {
		text-align: center;
		margin: 0 0 40px;
	}

	/*検索結果が無かった場合*/
	#archive_cont.search_none_cont {
		display: block;
		text-align: center;
	}
	.search_none_box {
		text-align: center;
		margin-bottom: 80px;
	}

	#archive_cont.search_none_cont #widget_searchform {
		margin: 0 auto;
	}

	/*　===============
検索
===============　*/
	#widget_searchform {
		position: relative;
		display: block;
		width: 100%;
		max-width: 376px;
		padding: 0;
		border-top: none;
	}

	#widget_keywords {
		width: 100%;
		height: 40px;
		padding: 8px 32px 8px 8px;
		border: none;
		background: #f4f4f4;
	}

	#widget_keywords:placeholder-shown {
		font-size: 1.6rem;
	}

	#widget_searchBtn {
		position: absolute;
		top: 0;
		right: 0;
		width: 40px;
		height: 40px;
		font-family: "Ionicons";
		font-size: 2rem;
		border: none;
		background: none;
	}

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

	/*ここまで*/
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
PC
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
@media only screen and (min-width: 1280px) {
	/*ここから*/
	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
共通
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.allwrapper {
		width: 100%;
		position: relative;
		overflow: hidden;
		padding: 0;
	}

	.inner {
		width: 1280px;
		padding: 0;
		margin: 0 auto;
	}
	/*全てのページのヘッダー分だけ*/
	.padd_head {
		padding: 80px 0 0;
	}

	.tabs {
		display: none;
	}

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

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ヘッダー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#upper {
		position: fixed;
		width: 100%;
		height: 80px;
		webkit-transition: 0.5s linear;
		transition: 0.5s linear;
	}
	#upper.Htb,
	#upper.Htd {
		position: fixed;
		width: 100%;
		height: auto;
	}
	#upper.Htb.fixed,
	#upper.Htd.fixed {
		position: fixed;
		width: 100%;
		height: 80px;
		padding: 0;
	}

	#upper .head_inner {
		display: flex;
		flex-wrap: wrap;
		padding: 0 40px;
	}
	#upper.Htb .head_inner,
	#upper.Htd .head_inner {
		display: block;
	}
	#upper.Htb.fixed .head_inner,
	#upper.Htd.fixed .head_inner {
		display: flex;
	}

	/*TypeB*/
	#upper.Htb .logo.T-B {
		display: flex;
		align-items: center;
		justify-content: center;
		width: calc(100% + 80px);
		overflow: hidden;
		padding: 42px 0 44px;
		margin: 0 0 0 -40px;
	}
	#upper.fixed .logo.T-B {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		width: auto;
		overflow: hidden;
		padding: 0;
		margin: 0 88px 0 0;
		background: none;
	}
	/*TypeD*/
	#upper.Htd .logo.T-D {
		display: flex;
		align-items: center;
		justify-content: center;
		width: calc(100% + 80px);
		overflow: hidden;
		padding: 42px 0 44px;
		margin: 0 0 0 -40px;
	}
	#upper.fixed .logo.T-D {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		width: auto;
		overflow: hidden;
		padding: 0;
		margin: 0 auto;
		background: none;
	}

	/*ロゴ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#upper .logo {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		width: auto;
		overflow: hidden;
		margin: 0 88px 0 0;
	}
	/*ロゴ画像*/
	#upper .logo img {
		margin-right: 8px;
	}

	.WPC #upper .logo .pc_up {
		display: block;
	}
	.WPC #upper .logo .sp_up {
		display: none;
	}

	/*タイプC*/
	#upper .logo.T-C {
		margin: 0 auto;
	}

	/*ロゴテキスト*/
	#upper .logo .site_logo_wrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	#upper .logo .txt_wrap {
		display: flex;
		flex-direction: column;
	}
	/*メインテキスト*/
	#upper .logo .main_txt {
		line-height: 1;
	}
	/*サブテキスト*/
	#upper .logo .sub_txt {
		line-height: 1;
	}
	#upper .logo .sub_txt.top {
		margin-bottom: 8px;
	}
	#upper .logo .sub_txt.bottom {
		margin-top: 8px;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ハンバーガー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.menu-trigger {
		display: none;
	}

	/*タイプC・D*/
	#upper.Htc .menu-trigger,
	#upper.Htd.fixed .menu-trigger {
		display: block;
	}
	#upper.Htc .menu-trigger,
	#upper.Htd.fixed .menu-trigger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		width: 80px;
		height: 80px;
		text-align: center;
		z-index: 10000;
	}
	#upper.Htc .trigger_wrap,
	#upper.Htd.fixed .trigger_wrap {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-between;
		width: 48px;
		height: 32px;
	}
	/*3本線*/
	#upper.Htc .trigger_wrap span,
	#upper.Htd.fixed .trigger_wrap span {
		display: block;
		width: 100%;
		height: 2px;
		transition: all 0.4s;
	}
	#upper.Htc .menu-trigger span:nth-of-type(1),
	#upper.Htd.fixed .menu-trigger span:nth-of-type(1) {
		width: 100%;
	}
	#upper.Htc .menu-trigger span:nth-of-type(2),
	#upper.Htd.fixed .menu-trigger span:nth-of-type(2) {
		width: 70%;
	}
	#upper.Htc .menu-trigger span:nth-of-type(3),
	#upper.Htd.fixed .menu-trigger span:nth-of-type(3) {
		width: 50%;
	}
	#upper.Htc .menu-trigger.active span:nth-of-type(1),
	#upper.Htd.fixed .menu-trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(15px) rotate(-315deg);
		transform: translateY(15px) rotate(-315deg);
	}
	#upper.Htc .menu-trigger.active span:nth-of-type(2),
	#upper.Htd.fixed .menu-trigger.active span:nth-of-type(2) {
		opacity: 0;
	}
	#upper.Htc .menu-trigger.active span:nth-of-type(3),
	#upper.Htd.fixed .menu-trigger.active span:nth-of-type(3) {
		width: 100%;
		-webkit-transform: translateY(-15px) rotate(315deg);
		transform: translateY(-15px) rotate(315deg);
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
Gnav
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WPC #Gnav.nav_AB {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 10;
	}
	.WPC #Gnav.nav_AB ul {
		height: 100%;
		list-style: none;
		padding: 0;
	}
	.WPC #Gnav.nav_AB > ul {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	/*親のli*/
	.WPC #Gnav.nav_AB > ul > li {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		width: auto;
		height: 100%;
		padding: 0 4px;
		margin: 0 56px 0 0;
	}
	.WPC #Gnav.nav_AB > ul > li:last-child {
		margin-right: 0;
	}
	.WPC .Htb #Gnav.nav_AB > ul > li,
	.WPC .Htd #Gnav.nav_AB > ul > li {
		height: 88px;
	}
	.WPC .Htb.fixed #Gnav.nav_AB > ul > li {
		height: 100%;
	}
	.WPC #Gnav.nav_AB > ul > li > a {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 0;
		font-size: 2rem;
	}
	.WPC #Gnav.nav_AB > ul > li > a span {
		font-size: 1.2rem;
	}

	/*ナビ、カレント・ホバーライン*/
	.WPC #Gnav.nav_AB > .g_nav_menu > li::before {
		content: "";
		position: absolute;
		z-index: -1;
		bottom: 0;
		left: 0;
		right: 100%;
		height: 4px;
		-webkit-transition-property: right;
		transition-property: right;
		-webkit-transition-duration: 0.3s;
		transition-duration: 0.3s;
		-webkit-transition-timing-function: ease-out;
		transition-timing-function: ease-out;
	}
	/*ホバー処理*/
	.WPC #Gnav.nav_AB > .g_nav_menu > li:hover:before,
	.WPC #Gnav.nav_AB > .g_nav_menu > li.current::before,
	.WPC #Gnav.nav_AB > .g_nav_menu > li:first-child.current::before {
		right: 0;
	}

	/*子のul
////////////////////////////////////*/
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu {
		position: absolute;
		top: calc(100% + 0px);
		left: 0;
		display: block;
		width: 180px;
		height: 0;
		overflow: hidden;
		/* padding: 0px 0px 0 16px; */
		-webkit-transition: 0.5s linear;
		transition: 0.5s linear;

		padding: 0px 0px 0 0;
		-ms-overflow-style: none;
	}
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu::-webkit-scrollbar {
		display: none;
	}
	/*親のliがhoverした時の子のul*/
	.WPC #Gnav.nav_AB > .g_nav_menu > li:hover .sub-menu {
		height: auto;
		overflow: visible;
		padding: 1px 0 0 0;
		/* padding: 16px 0px 0 16px; */
		/* width: 600px;
    height: calc(100vh - 320px);
    overflow-y: auto; */
	}

	/*子のli*/
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li {
		position: relative;
		/* padding: 0 16px 0 0;
    margin: 0 0 24px 0; */

		width: 180px;
		padding: 0 16px 16px 16px;
		margin: 0;
	}
	/*追加*/
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li:first-child {
		padding: 16px 16px 16px 16px;
	}
	/*追加*/

	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li:last-child {
		margin: 0;
	}
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li.has-grand:hover {
		overflow: visible;
	}
	/*子のa*/
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > a {
		display: block;
		width: 100%;
		height: auto;
		font-size: 1.4rem;
		font-weight: normal;
		line-height: 1.6;
		padding: 0 0 16px;
		-webkit-transition: 0.3s;
		transition: 0.3s;
		border-bottom-width: 1px;
		border-bottom-style: solid;
	}
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > a:hover {
		opacity: 0.8;
	}
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li:last-child > a {
		border-bottom: 0;
	}

	/*孫のul
////////////////////////////////////*/
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu {
		position: absolute;
		top: -16px;
		left: 100%;
		display: block;
		width: 100%;
		height: 0;
		overflow: hidden;
		padding: 0 0 0 0;
		-webkit-transition: 0.5s linear;
		transition: 0.5s linear;
	}
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li:first-child > .sub-menu {
		/* top: -16px; */
		top: 0;
	}
	/*子のliがhoverした時の孫のul*/
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li.has-grand:hover .sub-menu {
		overflow: visible;
		height: auto;
		padding: 0 0 0 16px;
	}
	/*孫のli*/
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu > li {
		position: relative;
		padding: 0 16px 0 0;
		margin: 0 0 24px 0;
	}
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu > li:first-child {
		padding: 16px 16px 0 0;
	}
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu > li.has-grand:hover {
		overflow: visible;
	}
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu > li:last-child {
		margin: 0;
	}
	/*孫のa*/
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu > li > a {
		display: block;
		width: 100%;
		height: auto;
		font-size: 1.4rem;
		font-weight: normal;
		line-height: 1.6;
		padding: 0 0 16px;
		-webkit-transition: 0.3s;
		transition: 0.3s;
		border-bottom-width: 1px;
		border-bottom-style: solid;
	}
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu > li > a:hover {
		opacity: 0.8;
	}

	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu > li:last-child > a {
		border-bottom: 0;
	}

	/*ひ孫のul
////////////////////////////////////*/
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu > li.has-grand > .sub-menu {
		position: absolute;
		top: -24px;
		left: 100%;
		display: block;
		width: 100%;
		height: 0;
		overflow: hidden;
		padding: 0;
		-webkit-transition: 0.5s linear;
		transition: 0.5s linear;
	}
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu > li.has-grand:first-child > .sub-menu {
		top: 0;
	}
	/*孫のliがhoverした時のひ孫のul*/
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu > li.has-grand:hover .sub-menu {
		overflow: visible;
		height: auto;
		padding: 0 0 0 16px;
	}
	/*ひ孫のli*/
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu > li > .sub-menu > li {
		position: relative;
		padding: 0 16px 0 0;
		margin: 0 0 24px 0;
	}
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu > li > .sub-menu > li:first-child {
		padding: 16px 16px 0 0;
	}
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu > li > .sub-menu > li:last-child {
		margin: 0;
	}
	/*ひ孫のa*/
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a {
		display: block;
		width: 100%;
		height: auto;
		font-size: 1.4rem;
		font-weight: normal;
		line-height: 1.6;
		padding: 0 0 16px;
		-webkit-transition: 0.3s;
		transition: 0.3s;
		border-bottom-width: 1px;
		border-bottom-style: solid;
	}
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a:hover {
		opacity: 0.8;
	}
	.WPC #Gnav.nav_AB > .g_nav_menu > li > .sub-menu > li > .sub-menu > li > .sub-menu > li:last-child > a {
		border-bottom: 0;
	}

	/*タイプC
 ====================================*/
	.WPC #upper.Htc #Gnav.nav_C {
		display: none;
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		height: calc(100vh - 80px);
		overflow: auto;
		padding: 0 0 64px;
		font-size: 0;
		z-index: 2000;
	}

	.WPC #upper.Htc #Gnav.nav_C .g_nav_menu {
		width: 1040px;
		height: auto;
		list-style: none;
		padding: 0;
		margin: 0 auto;
	}
	.WPC #upper.Htc #Gnav.nav_C > ul {
		display: block;
	}
	.WPC #Gnav.pc_nav.nav_C .g_nav_menu li {
		position: relative;
	}
	/*サブメニュー設定*/
	.WPC #Gnav.pc_nav.nav_C .g_nav_menu .sub-menu {
		display: none;
	}
	.WPC #Gnav.pc_nav.nav_C .g_nav_menu > li > ul.sub-menu,
	.WPC #Gnav.pc_nav.nav_C .g_nav_menu > li > ul.sub-menu > li > ul.sub-menu,
	.WPC #Gnav.pc_nav.nav_C .g_nav_menu > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu {
		padding: 0 0 0 32px;
	}
	/*aタグ設定*/
	.WPC #Gnav.pc_nav.nav_C .g_nav_menu a {
		position: relative;
		display: flex;
		align-items: center;
		width: 100%;
		height: 64px;
		padding: 0 0 0 16px;
		font-size: 1.8rem;
		letter-spacing: 1px;
		line-height: 1;
		border-bottom-width: 1px;
		border-bottom-style: solid;
	}
	.WPC #Gnav.pc_nav.nav_C ul.g_nav_menu a span {
		font-size: 1.2rem;
		padding: 4px 0 0 32px;
	}
	/*OPENボタン*/
	.WPC #Gnav.pc_nav.nav_C .g_nav_menu .has-child > .btn-icon,
	.WPC #Gnav.pc_nav.nav_C .g_nav_menu .has-grand > .btn-icon {
		position: absolute;
		top: 0;
		right: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 48px;
		height: 64px;
		cursor: pointer;
	}
	.WPC #Gnav.pc_nav.nav_C .g_nav_menu .has-child > .btn-icon::before,
	.WPC #Gnav.pc_nav.nav_C .g_nav_menu .has-grand > .btn-icon::before {
		content: "add";
		font-family: "Material Icons";
		font-size: 2rem;
		font-weight: 500;
	}
	.WPC #Gnav.pc_nav.nav_C .g_nav_menu .has-child.active > .btn-icon::before,
	.WPC #Gnav.pc_nav.nav_C .g_nav_menu .has-grand.active > .btn-icon::before {
		content: "remove";
	}

	/*タイプD
 ====================================*/
	.WPC #upper.Htd.fixed .navD {
		display: none !important;
	}
	.WPC #upper.Htd.fixed #Gnav {
		display: none;
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		height: calc(100vh - 80px);
		overflow: auto;
		padding: 0 0 64px;
		font-size: 0;
		z-index: 2000;
	}

	.WPC #upper.Htd.fixed #Gnav .g_nav_menu {
		width: 1040px;
		height: auto;
		list-style: none;
		padding: 0;
		margin: 0 auto;
	}
	.WPC #upper.Htd.fixed #Gnav > ul {
		display: block;
	}
	.WPC #upper.Htd.fixed #Gnav .g_nav_menu li {
		position: relative;
	}
	/*サブメニュー設定*/
	.WPC #upper.Htd.fixed #Gnav .g_nav_menu .sub-menu {
		display: none;
	}
	.WPC #upper.Htd.fixed #Gnav .g_nav_menu > li > ul.sub-menu,
	.WPC #upper.Htd.fixed #Gnav .g_nav_menu > li > ul.sub-menu > li > ul.sub-menu,
	.WPC #Gnav.pc_nav.nav_C .g_nav_menu > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu {
		padding: 0 0 0 32px;
	}
	/*aタグ設定*/
	.WPC #upper.Htd.fixed #Gnav .g_nav_menu a {
		position: relative;
		display: flex;
		align-items: center;
		width: 100%;
		height: 64px;
		padding: 0 0 0 16px;
		font-size: 1.8rem;
		letter-spacing: 1px;
		line-height: 1;
		border-bottom-width: 1px;
		border-bottom-style: solid;
	}
	.WPC #upper.Htd.fixed #Gnav ul.g_nav_menu a span {
		font-size: 1.2rem;
		padding: 4px 0 0 32px;
	}
	/*OPENボタン*/
	.WPC #upper.Htd.fixed #Gnav .g_nav_menu .has-child > .btn-icon,
	.WPC #upper.Htd.fixed #Gnav .g_nav_menu .has-grand > .btn-icon {
		position: absolute;
		top: 0;
		right: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 48px;
		height: 64px;
		cursor: pointer;
	}
	.WPC #upper.Htd.fixed #Gnav .g_nav_menu .has-child > .btn-icon::before,
	.WPC #upper.Htd.fixed #Gnav .g_nav_menu .has-grand > .btn-icon::before {
		content: "add";
		font-family: "Material Icons";
		font-size: 2rem;
		font-weight: 500;
	}
	.WPC #upper.Htd.fixed #Gnav .g_nav_menu .has-child.active > .btn-icon::before,
	.WPC #upper.Htd.fixed #Gnav .g_nav_menu .has-grand.active > .btn-icon::before {
		content: "remove";
	}

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

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
head_gear
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#upper .head_gear {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin: 0 0 0 auto;
	}
	/*タイプB*/
	#upper.Htb .head_gear {
		position: absolute;
		top: 40px;
		right: 40px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin: 0 0 0 auto;
	}
	#upper.Htb.fixed .head_gear {
		position: static;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin: 0 0 0 auto;
	}

	/*タイプC*/
	#upper.Htc .head_gear {
		position: absolute;
		top: 16px;
		right: 40px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin: 0 0 0 auto;
	}
	#upper.Htc .head_gear .tel_wrap {
		display: none;
	}

	/*タイプD*/
	#upper.Htd .head_gear {
		position: absolute;
		top: 40px;
		right: 40px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin: 0 0 0 auto;
	}
	#upper.Htd.fixed .head_gear {
		top: 16px;
	}
	#upper.Htd.fixed .head_gear .tel_wrap {
		display: none;
	}

	/*電話
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WPC .tel_wrap.onfp {
		display: none;
	}
	.sp_tel_wrap {
		display: none;
	}
	.tel_wrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.tel_wrap::before {
		content: "\e0b0";
		font-family: "Material Icons";
		font-size: 4rem;
		transform: rotate(16deg);
	}
	.tel_cont {
		padding: 0 0 0 4px;
	}
	.tel_cont .tel_link {
		display: block;
		font-size: 2.4rem;
		line-height: 1;
		margin: 0 0 8px;
	}

	.tel_cont .tel_txt {
		font-size: 1.2rem;
		line-height: 1;
	}

	/*アイコンリスト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WPC .head_ic_list.onfp {
		display: none;
	}
	.head_ic_list {
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		margin: 0 0 0 40px;
	}
	.head_ic_list .hil_box {
		position: relative;
		width: 24px;
		height: auto;
		margin: 20px 24px 0 0;
	}
	.head_ic_list .hil_box:last-child {
		margin: 0;
	}
	.head_ic_list .hil_box .ic_box {
		display: block;
		cursor: pointer;
	}

	/*カート*/
	.head_ic_list .hil_box .woo_cc {
		position: absolute;
		top: -10px;
		left: -16px;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 20px;
		height: 20px;
		color: #fff;
		font-size: 1.4rem;
		border-radius: 50%;
		background: #000;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
C_gear：タイプC
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.C_gear {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin: 80px auto;
	}
	/*電話
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.C_gear .tel_wrap {
		padding: 24px 40px;
		border: 1px solid;
	}

	.WPC .C_gear .tel_wrap.onfp {
		display: none;
	}

	.C_gear .tel_wrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.C_gear .tel_wrap::before {
		font-size: 5rem;
		transform: rotate(16deg);
	}
	.C_gear .tel_cont {
		padding: 0 0 0 4px;
	}
	.C_gear .tel_cont .tel_link {
		display: block;
		font-size: 3rem;
		line-height: 1;
		margin: 0 0 8px;
	}

	.C_gear .tel_cont .tel_txt {
		font-size: 1.4rem;
		line-height: 1;
	}

	.C_gear .head_ic_list {
		width: 40%;
	}

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

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
パンくず
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#bread_wrap {
		width: 1280px;
		overflow: hidden;
		padding: 0;
		margin: -16px auto 0;
	}
	#bread_wrap .bread_area {
		display: inline-block;
		height: 48px;
	}
	#bread_wrap .bread_mask {
		height: 100%;
		padding: 0 16px;
	}
	#bread_wrap .bread_cont {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		height: 100%;
		overflow-x: auto;
		overflow-y: hidden;
	}
	#bread_wrap .breadcrumbs {
		white-space: nowrap;
		font-size: 1.6rem;
	}
	#bread_wrap .breadcrumbs > span {
		margin: 0 8px;
	}
	#bread_wrap .breadcrumbs > span:first-child {
		margin: 0 8px 0 0;
	}
	#bread_wrap .breadcrumbs > span:last-child {
		margin: 0 0 0 8px;
	}
	#bread_wrap span,
	#bread_wrap a {
		font-size: 1.6rem;
	}

	/*LP用*/
	.lp_bread {
		margin-bottom: 40px;
	}
	.lp_bread.cb_link_4 {
		margin-bottom: 120px;
	}
	.lp_bread.cb_sns_4 {
		margin-bottom: 80px;
	}
	.lp_bread #bread_wrap {
		margin: 0 auto;
	}

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

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
フッター
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.under_wrap {
		position: relative;
	}
	#under {
		background-position: center center;
		background-size: cover;
	}
	#under .foot_inner {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
		flex-direction: row;
		width: 1280px;
		padding: 80px 0 80px;
		margin: 0 auto;
	}
	/*共通バーがある場合*/
	#under .foot_inner.cb_on {
		padding: 80px 0 132px;
	}
	#under .foot_inner.cb_on.lk_on {
		padding: 80px 0 80px;
	}
	#under .info_box {
		width: 28%;
	}

	/*フッターロゴ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.foot_logo {
		overflow: hidden;
		margin: 0 0 40px;
	}
	/*ロゴテキスト*/
	.foot_logo .site_logo_wrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
	}
	.foot_logo img {
		margin-right: 8px;
	}
	.foot_logo .txt_wrap {
		display: flex;
		flex-direction: column;
	}

	/*メインテキスト*/
	.foot_logo .main_txt {
		line-height: 1;
	}
	/*サブテキスト*/
	.foot_logo .sub_txt {
		line-height: 1;
	}
	.foot_logo .sub_txt.top {
		margin-bottom: 8px;
	}
	.foot_logo .sub_txt.bottom {
		margin-top: 8px;
	}

	/*アドレス*/
	.foot_add_txt {
		font-size: 1.6rem;
		line-height: 2;
		margin: 0 0 40px;
	}
	.foot_add_txt p {
		font-size: 1.6rem;
	}

	/*SNS
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.sns_cont {
		overflow: hidden;
	}
	.sns_cont .sns_list {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		list-style: none;
		margin: 0;
		padding: 0;
	}
	/*li*/
	.sns_cont .sns_list li {
		width: 24px;
		height: 24px;
		overflow: hidden;
		margin: 0 24px 0 0;
	}
	.sns_cont .sns_list li a {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.sns_cont .sns_list li img {
		max-width: 100%;
		max-height: 100%;
	}

	/*フッター右側
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.fr_cont {
		display: block;
		width: 70%;
		padding: 0;
	}
	/*under_nav
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.under_nav {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	.under_nav .nav_wrap {
		width: 30%;
	}
	.under_nav .center_cont {
		margin: 0 5%;
	}
	.under_nav ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.under_nav .foot_list {
		padding: 0;
	}
	.under_nav .foot_list li {
		position: relative;
	}
	.under_nav .foot_list li a {
		display: flex;
		align-items: center;
		font-size: 2rem;
		width: 100%;
		height: 64px;
		padding: 0 0 0 4px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	}
	.under_nav .foot_list li a span {
		font-size: 1.2rem;
		padding: 8px 0 0 8px;
	}

	/*サブメニュー*/
	.under_nav .foot_list > li > .sub-menu,
	.under_nav .foot_list > li > .sub-menu > li > .sub-menu,
	.under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > .sub-menu,
	.under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > .sub-menu {
		padding: 8px 0 0 24px;
	}

	/*子のa*/
	.under_nav .foot_list > li > .sub-menu > li > a,
	.under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > a,
	.under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a,
	.under_nav .foot_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a {
		font-size: 1.6rem;
		height: auto;
		min-height: 32px;
		border: none;
	}
	/*///////////////////////////////////*/

	/*フリー記入
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.under_free {
		width: 100%;
		height: auto;
		max-height: 420px;
		overflow: auto;
		padding: 0;
		margin-bottom: 24px;
	}

	/*地図*/
	.under_free iframe {
		width: 100%;
		height: 420px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
Bottom cont
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.bottom_cont {
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 35px;
		padding: 8px 0;
		z-index: 10;
	}
	.bottom_cont.cb_on {
		padding: 8px 0;
	}
	.bottom_cont .foot_bottom_inner {
		display: flex;
		justify-content: space-between;
		width: 1280px;
		margin: 0 auto;
	}
	/*特商・プライバシー・利用規約*/
	.bottom_cont .bottom_menu {
		margin: 0;
	}
	.bottom_cont .bottom_menu a {
		font-size: 1.2rem;
		letter-spacing: inherit;
	}
	.bottom_cont .bottom_menu span {
		padding: 0 4px;
	}
	/*コピーライト*/
	.bottom_cont .c_r {
		font-size: 1.2rem;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
fix_cont
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WPC .fix_cont.fc_sp {
		display: none;
	}
	.fix_cont {
		position: fixed;
		bottom: 35px;
		right: 0;
		display: block;
		width: 64px;
		height: auto;
	}
	/*共通バーがある場合*/
	.fix_cont.cb_on {
	}
	/*表示非表示*/
	.WPC .fix_onf_wrap.onfp {
		display: none;
	}
	.fix_wrap {
		width: 100%;
		height: 64px;
	}
	.fix_box {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}
	.fix_box img {
		width: 32px;
		height: auto;
	}
	/*カート*/
	.fix_wrap .woo_cc {
		top: -8px;
		left: -8px;
		width: 24px;
		height: 24px;
	}

	/*ページトップ*/
	#page-top a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}
	#page-top a img {
		width: 27px;
		height: auto;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
外部ショップモーダル
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#m_outside_shop_area {
	}
	#m_outside_shop_area .wrap {
		width: 100%;
		height: 100%;
	}
	#m_outside_shop_area .cont {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		width: 90%;
		height: 100%;
		margin: 0 auto;
	}
	#m_outside_shop_area .box {
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
	}
	/*外部リンクショップボタン*/
	.outside_shop_list {
		width: 100%;
		margin: 0 auto;
	}
	.outside_shop_list .out_shop {
		margin: 0 0 32px;
	}
	.outside_shop_list .out_shop a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 48px;
		font-size: 1.6rem;
	}

	/*閉じるボタン*/
	#m_outside_shop_area #m_close {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin: 10vw 0 0;
		color: #fff;
	}
	#m_outside_shop_area #m_close p {
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 1.4rem;
		line-height: 1;
		cursor: pointer;
	}
	#m_outside_shop_area #m_close span {
		font-family: "Ionicons";
		font-size: 3rem;
		margin: 0 1.25vw 0 0;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
検索モーダル
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#m_search_area {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.8);
		z-index: 10000;
	}
	#m_search_area .wrap {
		width: 100%;
		height: 100%;
	}
	#m_search_area .cont {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		margin: 0 auto;
	}
	#m_search_area .box {
		width: 580px;
		margin: 0 auto;
	}
	/*検索リスト*/
	#m_search_area .search_list {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		list-style: none;
		padding: 0;
		margin: 0 0 32px;
	}
	#m_search_area .search_list li {
		color: #fff;
		font-size: 1.6rem;
		margin: 0 32px 0 0;
	}

	#m_search_area .m_wrap {
		position: relative;
	}

	/*検索フォーム
	////////////////////////////////////*/
	#m_searchform {
		position: relative;
		display: block;
		width: 100%;
		padding: 0 !important;
		border-top: none;
	}
	/*検索リスト*/
	#m_searchform .search_select_box {
		display: flex;
		align-items: center;
		margin: 0 0 40px;
	}
	/*検索文言*/
	#m_searchform .search_txt {
		margin: 0 32px 0 0;
	}
	/*select*/
	#m_searchform .postform {
		width: 300px;
		height: 40px;
		padding: 8px;
		border: 0;
	}
	/*入力*/
	#m_keywords {
		width: 100%;
		height: 40px;
		padding: 8px 32px 8px 8px;
		border: none;
		background: #f4f4f4;
	}
	/*ボタン*/
	#m_searchBtn {
		width: 40px;
	}
	/*ボタン*/
	#m_searchBtn {
		position: absolute;
		top: 0;
		right: 0;
		width: 40px;
		height: 40px;
		cursor: pointer;
		font-family: "Ionicons";
		font-size: 2rem;
		border: none;
		background: none;
	}
	/*閉じるボタン*/
	#m_search_area #m_close {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin: 64px 0 0;
		color: #fff;
	}
	#m_search_area #m_close p {
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 1.4rem;
		line-height: 1;
		cursor: pointer;
	}
	#m_search_area #m_close span {
		font-family: "Ionicons";
		font-size: 3rem;
		margin: 0 8px 0 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
固定ページ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#page_wrap {
	}
	/*デフォルトテンプレート*/
	#page_area.page_default {
		width: 816px;
		margin: 0 auto;
	}
	/*ワイドテンプレート*/
	#page_area.page_wide {
		width: 1280px;
		overflow: hidden;
		padding: 0;
		margin: 0 auto;
	}
	/*フルテンプレート*/
	#page_area.page_full {
		width: 100%;
		overflow: hidden;
	}

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

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
共通バー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#common_bar_wrap {
		position: fixed;
		bottom: 0;
		width: 100%;
		z-index: 1000;
	}
	#common_bar_wrap .cbc_cont {
		width: 100%;
		height: 100%;
	}
	/*スマホ用*/
	#common_bar_wrap .sp_cbc_link {
		display: none;
	}
	/*PC用*/
	#common_bar_wrap .pc_cbc_link {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 100%;
		max-width: 1280px;
		height: 96px;
		padding: 16px 0;
		margin: 0 auto;
	}
	#common_bar_wrap .entry {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}
	/*画像*/
	#common_bar_wrap .entry .img_box {
		position: relative;
		width: 64px;
		overflow: hidden;
		margin: 0 32px 0 0;
	}
	#common_bar_wrap .entry .img_box::before {
		content: "";
		display: block;
		padding-top: 100%;
	}
	#common_bar_wrap .entry .img_box img {
		position: absolute;
		top: 0;
	}
	/*文字*/
	#common_bar_wrap .entry .txt_wrap {
		line-height: 1;
	}
	/*タイトル*/
	#common_bar_wrap .entry .txt_wrap .title {
		font-size: 2.4rem;
		margin: 0 0 12px;
	}
	/*テキスト*/
	#common_bar_wrap .entry .txt_wrap .txt {
		font-size: 1.6rem;
	}

	/*ボタン*/
	#common_bar_wrap .cbc_btn {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		max-width: 400px;
		height: 64px;
	}
	#common_bar_wrap .cbc_btn .ic {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
		font-size: 1.6rem;
		line-height: 1;
	}
	#common_bar_wrap .cbc_btn .ic::after {
		content: "\f363";
		font-family: "Ionicons";
		font-size: 3rem;
		margin: 0 0 0 16px;
	}
	#common_bar_wrap .cbc_btn .txt {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		overflow: hidden;
	}
	/*SNS
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#common_bar_wrap .cbc_sns {
		width: 100%;
		max-width: 1280px;
		height: 64px;
		margin: 0 auto;
	}
	#common_bar_wrap .cbc_sns .txt {
		display: block;
		font-size: 1.6rem;
		margin: 0 24px 0 0;
	}
	#common_bar_wrap .cbc_sns .addtoany_list {
		line-height: 1 !important;
	}
	#common_bar_wrap .cbc_sns .addtoany_list.a2a_kit_size_32 a {
		font-size: 0;
	}
	#common_bar_wrap .cbc_sns .addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service) > span {
		width: 40px;
		height: 40px;
	}
	#common_bar_wrap .cbc_sns .addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service) > span svg {
		width: 32px;
	}
	#common_bar_wrap .cbc_sns .addtoany_list a,
	.widget .addtoany_list a {
		padding: 0;
		margin: 0 32px 0 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
地域王
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.lk_area {
		width: 1280px;
		margin: 0 auto;
		padding: 48px 64px 80px;
	}
	/*共通バーあり*/
	.lk_area.cb_on {
		padding: 48px 0 160px;
	}
	.lk_area li {
		margin-bottom: 10px;
	}
	.lk_area li::before {
		width: 1px;
		height: 16px;
	}
	.lk_area li:last-child:after {
		width: 1px;
		height: 16px;
	}
	.lk_area li a {
		font-size: 12px;
		margin: 0 24px;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
パスワード保護
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.pw_box {
		padding: 0 0 64px;
	}
	.pw_box .pw_txt {
		padding: 0;
		text-align: left;
	}
	.pw_box form {
		display: flex;
		align-items: center;
	}
	.pw_box span {
		font-size: 1.6rem;
	}
	/*入力欄*/
	.pw_box input[type="password"] {
		width: 50%;
		height: 40px;
		padding: 8px;
		margin: 0 32px 0 0;
	}
	/*送信ボタン*/
	.pw_box input[type="submit"] {
		display: block;
		width: 120px;
		height: 40px;
		margin: 0;
	}
	/*///////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
検索結果（投稿、全て）
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.search_title {
		text-align: center;
		margin: 0 0 40px;
	}

	/*検索結果が無かった場合*/
	#archive_cont.search_none_cont {
		display: block;
		text-align: center;
	}
	.search_none_box {
		text-align: center;
		margin-bottom: 80px;
	}

	#archive_cont.search_none_cont #widget_searchform {
		margin: 0 auto;
	}

	/*　===============
検索
===============　*/
	#widget_searchform {
		position: relative;
		display: block;
		width: 100%;
		max-width: 376px;
		padding: 0;
		border-top: none;
	}

	#widget_keywords {
		width: 100%;
		height: 40px;
		padding: 8px 32px 8px 8px;
		border: none;
		background: #f4f4f4;
	}

	#widget_keywords:placeholder-shown {
		font-size: 1.6rem;
	}

	#widget_searchBtn {
		position: absolute;
		top: 0;
		right: 0;
		width: 40px;
		height: 40px;
		font-family: "Ionicons";
		font-size: 2rem;
		border: none;
		background: none;
	}

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

	/*ここまで*/
}
@charset "utf-8";
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
共通
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/*インプットの文字サイズを最低でも16pxにする（IOS用）*/
#side_bar input {
	font-size: max(1.6rem, 16px);
}
/*hr*/
#side_bar hr.wp-block-separator {
	border-bottom: none;
}
/*画像リンクホバー設定*/
#side_bar a img:hover {
	opacity: 0.8;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ 
サイドバー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.WSP #side_bar {
	width: calc(100% + 10vw);
	padding: 0;
	margin-left: -3.75vw;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ 
コンテンツ 
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#side_bar aside,
#side_bar div.widget {
	padding: 0;
	margin: 0;
}
.WSP #side_bar > aside {
	padding: 6.25vw 6.25vw;
	margin: 0;
	border-top-width: 1px;
	border-top-style: solid;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
タイトル
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#side_bar .jbg_side_area_title,
#side_bar .jw_post_cat_title,
#side_bar .widget-title {
	font-size: 2.4rem;
	font-weight: normal;
	line-height: 1.6;
}
.WSP #side_bar .jbg_side_area_title,
.WSP #side_bar .jw_post_cat_title,
.WSP #side_bar .widget-title {
	padding: 0 0 5vw 0;
}
/*JetSideのエリアタイトル*/
.WSP #side_bar .jw_post_cat_title,
.WSP #side_bar .widget-title {
	border: none;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ 
画像
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#side_bar .wp-block-image {
	padding-left: 2.5vw;
}
#side_bar img {
	width: 100%;
	height: 100%;
}

/* =============== 
ul、ol設定
=============== */
#side_bar > aside > ul,
#side_bar > aside > ol {
	padding: 0;
	margin: 0;
}

/*ul、ol設定*/
#side_bar > aside > ul > li,
#side_bar > aside > ol > li {
	padding: 0 0;
	position: relative;
	width: 100%;
	list-style-position: inside;
}
#side_bar aside .wp-block-archives-list {
	padding: 0;
}
.wp-block-archives-list li,
.wp-block-categories-list li,
.wp-block-page-list li,
.widget_meta li {
	list-style: none;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
投稿・商品カテゴリーセレクト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.jw_post_cat_wrap {
}
.jw_post_cat_wrap select {
	display: block;
	width: calc(100% - 2.5vw);
	height: 10vw;
	padding-left: 1.25vw;
	margin: 5vw auto 0;
	font-size: 1.6rem;
}
.jw_post_cat_wrap select option {
	font-size: 1.6rem;
}

/*商品の場合
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.jw_post_cat_wrap .is-dropdown {
	width: 100%;
}
.jw_post_cat_wrap .wc-block-product-categories__dropdown {
	width: calc(100% - 12.5vw);
}
/*ボタン*/
.jw_post_cat_wrap .wc-block-product-categories__button {
	width: 10vw;
	height: 10vw;
	justify-content: center;
	margin: 5vw 0 0;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ 
投稿・商品カテゴリーリスト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/*グループ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.jw_post_cat_wrap {
}
/*タイトル
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.jw_post_cat_wrap .jw_post_cat_title {
}
/*カテゴリーリスト 投稿・商品
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.WSP #side_bar aside ul.jw_post_cat_list,
.WSP #side_bar aside .jw_post_cat_list > ul {
	padding: 0;
	margin: 0 0 0 2.5vw;
	list-style: none;
	border-top-width: 1px;
	border-top-style: solid;
}
/*カテゴリーリスト 商品
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#side_bar aside .jw_post_cat_list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
/*階層非表示*/
#side_bar aside .jw_post_cat_list ul.children,
#side_bar aside .jw_post_cat_list li.has-child > ul {
	display: none;
}
/*li設定*/
#side_bar aside .jw_post_cat_list li {
	position: relative;
	margin: 0;
}
/*aタグ設定
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#side_bar aside .jw_post_cat_list li a {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 15vw;
	height: auto;
	padding-top: 1.25vw;
	padding-bottom: 1.25vw;
	font-size: 1.6rem;
	line-height: 1.4;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}
#side_bar aside .jw_post_cat_list li.has-child > a {
	padding-right: 10vw;
}
/*商品カテで画像がある場合*/
#side_bar aside .jw_post_cat_list .wc-block-product-categories-list--has-images a .wc-block-product-categories-list-item__image {
	width: 10vw;
	height: 10vw;
	overflow: hidden;
	margin: 0 2.5vw 0 0;
	border: none;
}
/*商品カテで投稿数がある場合*/
#side_bar aside .jw_post_cat_list a .wc-block-product-categories-list-item-count {
	margin-left: 1.25vw;
}

/*子カテ*/
#side_bar aside .jw_post_cat_list li > a {
	padding-left: 2.5vw;
}
/*孫カテ*/
#side_bar aside .jw_post_cat_list li > ul > li > a {
	padding-left: 5vw;
}
/*ひ孫以下*/
#side_bar aside .jw_post_cat_list li > ul > li > ul > li > a {
	padding-left: 7.5vw;
}
#side_bar aside .jw_post_cat_list ul li:last-child {
	border-bottom: none;
}
/*OPENボタン
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#side_bar .has-child > .btn-icon,
#side_bar .has-grand > .btn-icon {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 8.75vw;
	height: 15vw;
	cursor: pointer;
}
#side_bar .has-child > .btn-icon::before,
#side_bar .has-grand > .btn-icon::before {
	content: "\f3d0";
	font-family: "Ionicons";
	font-size: 3rem;
}
#side_bar .has-child.active > .btn-icon::before,
#side_bar .has-grand.active > .btn-icon::before {
	content: "\f3d8";
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ 
投稿・商品の検索バー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#side_bar .widget_search .jw_search {
}
/*囲うもの*/
#side_bar .widget_search .jw_search .wp-block-search__inside-wrapper {
	position: relative;
}
/*記入欄*/
#side_bar .widget_search .jw_search .wp-block-search__input {
	width: 100%;
	height: 10vw;
	padding: 0 11.25vw 0 2.5vw;
	border: none;
	background: #f7f7f7;
}
/*検索ボタン（虫眼鏡）*/
#side_bar .widget_search .jw_search .wp-block-search__button {
	position: absolute;
	top: 0;
	right: 0;
	width: 10vw;
	height: 100%;
	border: none;
	background: none;
}
#side_bar .widget_search .jw_search .wp-block-search__button svg {
	display: none;
}
/*アイコン*/
#side_bar .widget_search .jw_search .wp-block-search__button:before {
	content: "\f2f5";
	position: absolute;
	top: 1px;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10vw;
	height: 100%;
	cursor: pointer;
	font-family: "Ionicons";
	font-size: 2rem;
	border: none;
	background: none;
}

/*=============== 
タイトル
=============== */
#side_bar time {
	font-size: 1.4rem;
}

#side_bar aside .wp-block-loginout a {
	font-size: 1.6rem;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
テキスト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

/* =============== 
引用
=============== */
#side_bar .wp-block-quote {
	padding: 11vw;
	text-align: justify;
}

#side_bar .wp-block-quote cite {
	margin-top: 1.375vw;
	display: block;
	text-decoration: underline;
}

/* =============== 
コード 
=============== */
.wp-block-code code {
	font-size: 1.6rem;
}

/* =============== 
整形済みテキスト 
=============== */
.wp-block-preformatted {
	font-size: 1.6rem;
}

/* =============== 
テーブル
=============== */

/* =============== 
詩 
=============== */
pre.wp-block-verse {
	font-size: 1.6rem;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
メディア
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

/*===============  
メディア・テキスト 
=============== */
.wp-block-media-text .wp-block-media-text__media {
	margin-bottom: 2vw;
}

/*===============  
ファイル 
=============== */
.wp-block-file a {
	font-size: 1.6rem;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
デザイン
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ウィジェット
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

/* =============== 
アーカイブ
=============== */
#side_bar aside .wp-block-archives {
	padding-right: 0;
	padding-left: 0;
}

#side_bar aside .wp-block-archives li {
	padding: 1vw 0 1vw 2vw;
	border-bottom: 1px solid #bfbaba;
}

#side_bar aside .wp-block-archives li:first-child {
	border-top: 1px solid #bfbaba;
}

/* =============== 
カレンダー 
=============== */
#side_bar .wp-block-calendar table caption {
	font-size: 1.6rem;
	margin-bottom: 0.78125vw;
}

#side_bar .wp-block-calendar tbody td,
.wp-block-calendar th {
	font-size: 1.4rem;
	height: 48px;
	vertical-align: middle;
	padding: 0px;
}

#side_bar tbody td a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 1.4rem;
	padding: 0px;
	vertical-align: middle;
}

#side_bar .wp-calendar-nav {
	display: flex;
	justify-content: space-between;
	padding: 2.5vw 2.5vw 0;
}

#side_bar .wp-calendar-nav span a {
	border-bottom: none;
	padding: 0px;
	font-size: 1.4rem;
}

/* =============== 
カテゴリー 
=============== */
/* #side_bar aside .wp-block-categories-list {
  padding: 0 0 0 2.5vw;
  margin: 0;
  list-style: none;
}
#side_bar aside .wp-block-categories-list li {
  padding: 1vw 0 1vw;
} */
/*aタグ設定*/

/* #side_bar aside .wp-block-categories-list li a {
  border-bottom: 1px solid #bfbaba;
}
#side_bar aside .wp-block-categories-list li > a {
  padding: 0 0 0 2.5vw;
}
#side_bar aside .wp-block-categories-list li > ul > li > a {
  padding: 0 0 0 5vw;
}
#side_bar aside .wp-block-categories-list li > ul > li > ul > li > a {
  padding: 0 0 0 7.5vw;
}

#side_bar aside .wp-block-categories-list ul li:last-child {
  border-bottom: none;
} */

/* =============== 
最新のコメント 
=============== */
#side_bar aside .wp-block-latest-comments {
	padding-left: 0;
}

#side_bar aside .wp-block-latest-comments img {
	width: 48px;
	height: 48px;
}

#side_bar .wp-block-latest-comments__comment-meta {
	margin-left: 0;
}

#side_bar .wp-block-latest-comments__comment-meta a {
	padding-left: 0;
}

#side_bar .wp-block-latest-comments__comment-excerpt {
	margin-left: 0;
}

/* =============== 
最新の投稿 
=============== */
#side_bar aside .wp-block-latest-posts__list {
	padding-left: 0;
}

#side_bar aside .wp-block-latest-posts__list li {
	margin-bottom: 0;
	padding: 0;
	border-bottom: 1px solid #bfbaba;
}

#side_bar .wp-block-latest-posts__list li:first-child {
	border-top: 1px solid #bfbaba;
}

#side_bar .wp-block-latest-posts__list li {
	width: 100%;
	padding: 0 0 0 2.5vw;
	margin: 0 0 5vw;
	overflow: hidden;
}

#side_bar .wp-block-latest-posts__list li .wp-block-latest-posts__featured-image {
	float: left;
	margin: 0 2.5vw 0 0;
}

#side_bar .wp-block-latest-posts__list li .wp-block-latest-posts__featured-image img {
	width: 20vw;
	height: auto;
}

/* =============== 
固定ページリスト 
=============== */
#side_bar aside .wp-block-page-list {
	padding-left: 2vw;
}

#side_bar aside .wp-block-page-list li {
	padding: 1vw 0 1vw 2vw;
	position: relative;
	border-bottom: 1px solid #bfbaba;
}

#side_bar aside .wp-block-page-list li:first-child {
	border-top: 1px solid #bfbaba;
}

#side_bar aside .wp-block-page-list .submenu-container li {
	padding: 1vw 0;
}

#side_bar aside .wp-block-page-list .submenu-container li:last-child {
	border-bottom: none;
}

#side_bar aside .wp-block-page-list li .submenu-container {
	display: none;
}

#side_bar aside .wp-block-page-list li.has-child.active > .submenu-container {
	display: block;
}

/* ===============
タグクラウド
=============== */
#side_bar .wp-block-tag-cloud,
#side_bar .widget_product_tag_cloud .tagcloud {
	padding: 0 0 0 2vw;
}

#side_bar .wp-block-tag-cloud a,
#side_bar .widget_product_tag_cloud .tagcloud a {
	display: inline-block;
	padding: 1.25vw 3.75vw;
	margin: 0 3.75vw 3.75vw 0;
	font-size: 1.4rem !important;
	border-width: 0.16vw;
	border-style: solid;
}

/* =============== 
従来のウィジェット - パンくずリスト
=============== */
#side_bar aside .breadcrumbs {
	font-size: 1.6rem;
}

/* =============== 
メタ情報
=============== */
#side_bar .widget_meta ul {
	padding-left: 2vw;
}

#side_bar .widget_meta ul li {
	padding: 1vw 0 1vw 2vw;
	border-bottom: 1px solid #bfbaba;
}

#side_bar .widget_meta ul li:first-child {
	border-top: 1px solid #bfbaba;
}

/* =============== 
ナビゲーションメニュー 
=============== */
#side_bar .widget_nav_menu ul {
	margin-left: 2vw;
}

#side_bar .widget_nav_menu li {
	list-style: none;
	padding: 1vw 0 0 2vw;
	border-bottom: 1px solid #bfbaba;
	position: relative;
}

#side_bar .widget_nav_menu li.has-child.active > a {
	margin-bottom: 8px;
}

#side_bar .widget_nav_menu li.has-child.active {
	padding: 8px 0 0 0;
}

#side_bar .widget_nav_menu li.has-child.active .sub-menu li {
	border-bottom: 1px solid #bfbaba;
}

#side_bar .widget_nav_menu li.has-child.active .sub-menu li:last-child {
	border-bottom: none;
}

#side_bar .widget_nav_menu li.has-child.active .sub-menu li:first-child {
	border-top: 1px solid #bfbaba;
}

#side_bar .widget_nav_menu > div > ul {
	padding: 0;
}

#side_bar .widget_nav_menu > div > ul > li:first-child {
	border-top: 1px solid #bfbaba;
}

#side_bar .widget_nav_menu li.has-child > .sub-menu {
	display: none;
}

#side_bar .widget_nav_menu li.has-child.active > .sub-menu {
	display: block;
}

/* =============== 
AIOSEO - パンくずリスト
=============== */
#side_bar aside .aioseo-breadcrumb {
	font-size: 1.6rem;
}

/* =============== 
AIOSEO - サイトマップ
=============== */
#side_bar aside .aioseo-html-sitemap-compact-archive li a {
	border-bottom: 1px solid #bfbaba;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
テーマ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/* ===============
アバター
=============== */
#side_bar aside .wp-block-avatar a {
	height: 100%;
	display: block;
}

#side_bar aside .wp-block-avatar a img {
	width: initial;
	height: initial;
}

/* =============== 
続きを見る
=============== */
#side_bar aside .wp-block-read-more {
	font-size: 1.6rem;
}

/* ===============
コメントクエリーループ
=============== */
#side_bar aside .wc-block-review-list li:first-child {
	border-top: 1px solid #bfbaba;
}

#side_bar aside .wc-block-review-list li {
	padding: 1em 0 1em 1em;
}

/* ===============
AddToAny
=============== */
#side_bar aside .addtoany_list {
	margin: 0 0 0 2vw;
	display: block;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
埋め込み
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/*=============== 
YouTube
=============== */
#side_bar aside .wp-block-embed-youtube iframe {
	width: 100%;
}

#side_bar aside .wp-block-embed-youtube .wp-block-embed__wrapper {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

#side_bar aside .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

/*=============== 
Twitter
=============== */
#side_bar aside .wp-block-embed-twitter .twitter-timeline {
	width: 100% !important;
}

/*=============== 
Sound Cloud
=============== */
#side_bar aside .wp-block-embed-soundcloud iframe {
	width: 100%;
}

/*=============== 
Cloudup
=============== */
#side_bar aside .wp-block-embed-cloudup iframe {
	width: 100%;
}

/*=============== 
DailyMotion
=============== */
#side_bar aside .wp-block-embed-dailymotion iframe {
	width: 100%;
}

/*=============== 
imgur
=============== */
#side_bar aside .wp-block-embed-imgur iframe {
	width: 100% !important;
}

/*=============== 
Rebbit
=============== */
#side_bar aside .wp-block-embed-reddit .embedly-card-hug {
	max-width: 100% !important;
	margin: 0 !important;
}

#side_bar aside .wp-block-embed-reddit iframe {
	width: 100%;
}

/*=============== 
SlideShare
=============== */
#side_bar aside .wp-block-embed-slideshare iframe {
	width: 100%;
}

/*=============== 
SpeakerDeck
=============== */
#side_bar aside .wp-block-embed-speaker-deck iframe {
	width: 100%;
}

/*=============== 
TED
=============== */
#side_bar aside .wp-block-embed-ted iframe {
	width: 100%;
}

/*=============== 
VideoPress
=============== */
#side_bar aside .wp-block-embed-videopress iframe {
	width: 100%;
}

/*=============== 
Amazon Kindle
=============== */
#side_bar aside .wp-block-embed-amazon iframe {
	width: 100%;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
YIYH
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/*=============== 
YITH Wishlist
=============== */
#side_bar aside .wishlist-items-wrapper a {
	font-size: 100%;
	justify-content: flex-start;
}

#side_bar aside .wishlist-items-wrapper .product-remove a {
	width: 5vw;
	height: 5vw;
	font-size: 1.6rem;
}

#side_bar aside .wishlist-items-wrapper small {
	font-size: 100%;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
WooCommerce
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/* ===============
共通
=============== */
/*=============== 
商品一覧表示の商品名の高さ
=============== */
#side_bar .wc-block-grid__product .wc-block-grid__product-title {
	height: 13vw;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

/* ===============
評価
=============== */
#side_bar aside .wc-block-grid__product .star-rating {
	width: 5.5em;
	height: 1.618em;
	margin: 0;
}

/* ===============
商品一覧要素の高さ
=============== */
#side_bar aside .wc-block-grid__product {
	margin-bottom: 10vw;
	text-align: left;
}

#side_bar aside .yith-wcwl-add-button a {
	height: 100%;
}

/* ===============
割引前の値段
=============== */
#side_bar aside del .woocommerce-Price-amount {
	display: block;
}

/* ===============
共通　ここまで
=============== */

/* ===============
全てのレビュー
=============== */
#side_bar aside .wc-block-components-sort-select__select {
	height: 8vw;
	padding-left: 1.375vw;
}

#side_bar aside .wc-block-components-sort-select__select {
	width: 100%;
	margin: 0 0 5vw;
}

#side_bar aside .wp-block-woocommerce-all-reviews ul {
	padding-left: 0;
}

#side_bar aside .wp-block-woocommerce-all-reviews li {
	margin: 0;
	padding-bottom: 3.75vw;
	border-bottom: 1px solid #bfbaba;
}

#side_bar aside .wp-block-woocommerce-all-reviews li a {
	padding-left: 0;
	align-items: flex-start;
}

/* ===============
商品カテゴリーリスト
=============== */
/* #side_bar aside .wp-block-woocommerce-product-categories > ul {
  padding: 0 0 0 2.5vw;
  margin: 0;
  list-style: none;
} */
/*li設定*/
/* #side_bar aside .wp-block-woocommerce-product-categories ul li {
  padding: 1vw 0 1vw;
  border-top: 1px solid #eee;
}
#side_bar aside .wp-block-woocommerce-product-categories > ul > li:first-child {
  border: none;
}
#side_bar aside .wp-block-woocommerce-product-categories > ul > li:last-child {
  border-bottom: 1px solid #eee;
} */
/*aタグ設定*/
/* #side_bar aside .wp-block-woocommerce-product-categories ul li a {
  display: inline-block;
  width: auto;
  height: 15vw;
  padding-top: calc((15vw - 50px) / 2);
  padding-left: 2.5vw;
}
#side_bar aside .wp-block-woocommerce-product-categories ul > li > ul > li > a {
  padding-left: 5vw;
}
#side_bar
  aside
  .wp-block-woocommerce-product-categories
  ul
  > li
  > ul
  > li
  > ul
  > li
  > a {
  padding-left: 7.5vw;
} */

/*画像*/
/* #side_bar
  aside
  .wp-block-woocommerce-product-categories
  .wc-block-product-categories-list-item
  .wc-block-product-categories-list-item__image {
  width: 50px;
  height: 50px;
  margin: 0 0.5em 0 0;
}

#side_bar aside .wp-block-woocommerce-product-categories ul li ul {
  display: none;
  padding: 0;
  margin: 0;
}

#side_bar aside .wp-block-woocommerce-product-categories ul li ul li {
  border-bottom: none;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0;
} */

/*件数カウント*/
/* .wp-block-woocommerce-product-categories
  .wc-block-product-categories-list-item-count {
} */

/* ===============
商品別レビュー
=============== */
#side_bar aside .wc-block-review-list {
	padding: 0;
}

#side_bar aside .wc-block-review-list li {
	margin-bottom: 0;
	border-bottom: 1px solid #bfbaba;
}

/* ===============
商品一覧
=============== */
#side_bar .product_list_widget {
	margin: 2vw 0 0 2vw;
}

#side_bar .product_list_widget li {
	height: auto;
	padding: 2.5vw 2vw;
	text-align: right;
	position: relative;
}

#side_bar .product_list_widget a {
	height: 100%;
	padding: 0;
	overflow: hidden;
	text-align: left;
	align-items: flex-start;
}

#side_bar .product_list_widget a .product-title {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

#side_bar .product_list_widget a img {
	min-width: 20vw;
	width: 20vw;
	height: 20vw;
	margin: 0 2.5vw 0 0;
	object-fit: cover;
}

#side_bar .product_list_widget .woocommerce-Price-amount {
	font-size: 1.4rem;
}

#side_bar .product_list_widget del .woocommerce-Price-amount {
	font-size: 1rem;
}

#side_bar .product_list_widget ins {
	text-decoration: none;
}

#side_bar .product_list_widget ins .woocommerce-Price-amount {
	font-size: 1.4rem;
	margin: 0 0 0 2.5vw;
}

#side_bar .product_list_widget .woocommerce-price-suffix {
	font-size: 1rem;
	font-weight: normal;
}

#side_bar .product_list_widget .star-rating {
	margin: 0 0 1.25vw auto;
	font-size: 1.6rem;
}

#side_bar aside .product_list_widget li {
	border-bottom: 1px solid #bfbaba;
}

#side_bar aside .product_list_widget li:first-child {
	border-top: 1px solid #bfbaba;
}

/* ===============
商品エリア１
=============== */
#side_bar .has-1-columns .wc-block-grid__product-onsale {
	position: relative;
}

#side_bar .has-1-columns .wc-block-grid__product-add-to-cart {
	display: block;
}

/*===============
最近のコメント
=============== */
#side_bar .widget_recent_comments .recentcomments {
	padding: 2.5vw;
}

#side_bar aside .wp-block-latest-comments li {
	padding-left: 1em;
	border-bottom: 1px solid #bfbaba;
}

#side_bar aside .wp-block-latest-comments li:first-child {
	border-top: 1px solid #bfbaba;
	padding-top: 1em;
}

/* ===============
カテゴリー
=============== */
#side_bar .widget_categories form {
	padding: 0 2.5vw;
}

/* ===============
商品エリア2
=============== */

#side_bar .wc-block-grid__products {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

/* ===============
商品詳細ボタン
=============== */
#side_bar .wc-block-grid.has-3-columns .wc-block-grid__product {
	width: 46.5%;
	flex: none;
	text-align: left;
}

/* ===============
割引価格
=============== */
#side_bar .wc-block-grid.has-3-columns .wc-block-grid__product ins .woocommerce-Price-amount {
	font-size: 1.6rem;
	color: #dd3333;
}

/* ===============
共通価格
=============== */
#side_bar .wc-block-grid__product-price {
	height: 10vw;
	font-size: 1.6rem;
}

/* ===============
割引前価格
=============== */
#side_bar .wc-block-grid__product del {
	font-size: 1rem;
}

/* ===============
円
=============== */
#side_bar .wc-block-grid.has-3-columns .wc-block-grid__product ins .woocommerce-Price-currencySymbol {
	font-size: 1rem;
	color: #bfbaba;
}

/* ===============
税込み
=============== */
#side_bar .wc-block-grid__product-price small {
	font-size: 1rem;
}

#side_bar .wc-block-grid__product .wc-block-grid__product-link {
	display: grid;
	border-bottom: none;
	height: auto;
	padding: 0;
	width: 100%;
}

#side_bar .wc-block-grid__product .wc-block-grid__product-link .wc-block-grid__product-image img {
	height: 100%;
	width: 100%;
}

#side_bar .wc-block-grid__product .wc-block-grid__product-title {
	font-size: 1.6rem;
}

#side_bar .wc-block-grid__product-onsale {
	margin: 0;
	padding: 1vw 2.5vw;
	font-size: 1rem;
	position: absolute;
	top: 2.5vw;
	left: -1.5vw;
	border-radius: 0;
	line-height: 1;
	background-color: #dd3333;
	color: #fff;
}

#side_bar .wc-block-grid__product-add-to-cart {
	display: none;
}

/*　===============
お買い物カゴ
===============　*/
#side_bar aside .widget_shopping_cart_content ul li img {
	width: 20vw !important;
	margin-right: 0;
}

#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget li {
	padding: 2.5vw 0 2.5vw 5vw;
	border-bottom: 1px dotted #bfbaba;
}

/*　===============
カート：商品タイトル
===============　*/
#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget a {
	display: block;
	font-size: 1.6rem;
	height: auto;
}

/*　===============
商品削除ボタン
===============　*/
#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget a.remove {
	position: absolute;
	left: -1vw;
	height: 1em;
	width: 1em;
	font-size: 2.5rem;
	padding: 0;
	line-height: 1;
	text-align: center;
}

/*　===============
画像
===============　*/
#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget img {
	float: right;
	margin-left: 4px;
	width: 26.25vw;
}

/*　===============
オプション
===============　*/
#side_bar .widget_shopping_cart .product_list_widget .mini_cart_item .variation {
	position: relative;
	padding: 3.75vw 0 0 3.75vw;
}

#side_bar .widget_shopping_cart .product_list_widget .mini_cart_item .variation .v_box {
	font-size: 1.4rem;
}

/*　===============
個々の商品値段
===============　*/
#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget .woocommerce-mini-cart-item .quantity {
	clear: both;
	display: block;
	padding: 2.5vw 0 0;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: right;
}

/*　===============
小計
===============　*/
#side_bar .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
	border-top: none;
	padding: 3.75vw 0;
	text-align: right;
}

#side_bar .woocommerce-mini-cart__buttons {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
}

#side_bar .widget_shopping_cart .buttons a,
.woocommerce.widget_shopping_cart .buttons a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48%;
	height: 15vw;
	padding: 0;
}

#side_bar .widget_shopping_cart .buttons a {
	margin: 0 4% 0 0;
}

#side_bar .woocommerce.widget_shopping_cart .buttons .checkout {
	margin-right: 0px;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

/*WTT スマホ寄りのタブ*/
@media screen and (min-width: 641px) and (max-width: 959px) {
	/*ここから*/
	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
共通
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
サイドバー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WTT #side_bar {
		width: calc(100% + 36px);
		padding: 0;
		margin-left: -12px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ 
コンテンツ 
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WTT #side_bar > aside {
		padding: 40px 40px;
		border-top-width: 1px;
		border-top-style: solid;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
タイトル
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/*JetBlocksとWPBlocks共通*/
	.WTT #side_bar .jbg_side_area_title,
	.WTT #side_bar .jw_post_cat_title,
	.WTT #side_bar .widget-title {
		padding: 0 0 2.5vw 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ 
画像
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#side_bar .wp-block-image {
		padding-left: 2.5vw;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
投稿・商品カテゴリーセレクト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.jw_post_cat_wrap {
	}
	.jw_post_cat_wrap select {
		width: calc(100% - 16px);
		height: 48px;
		padding-left: 8px;
		margin: 32px auto 0;
	}

	/*商品の場合
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.jw_post_cat_wrap .wc-block-product-categories__dropdown {
		width: calc(100% - 72px);
	}
	/*ボタン*/
	.jw_post_cat_wrap .wc-block-product-categories__button {
		width: 48px;
		height: 48px;
		margin: 32px 0 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ 
投稿・商品カテゴリーリスト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/*カテゴリーリスト 投稿・商品
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WTT #side_bar aside ul.jw_post_cat_list,
	.WTT #side_bar aside .jw_post_cat_list > ul {
		padding: 0;
		margin: 0 0 0 2.5vw;
		list-style: none;
		border-top-width: 1px;
		border-top-style: solid;
	}

	/*aタグ設定
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#side_bar aside .jw_post_cat_list li a {
		padding-top: 8px;
		padding-bottom: 8px;
		min-height: 64px;
	}
	#side_bar aside .jw_post_cat_list li.has-child > a {
		padding-right: 10vw;
	}
	/*商品カテで画像がある場合*/
	#side_bar aside .jw_post_cat_list .wc-block-product-categories-list--has-images a .wc-block-product-categories-list-item__image {
		width: 64px;
		height: 64px;
		margin: 0 16px 0 0;
	}
	/*商品カテで投稿数がある場合*/
	#side_bar aside .jw_post_cat_list a .wc-block-product-categories-list-item-count {
		margin-left: 8px;
	}
	/*子カテ*/
	#side_bar aside .jw_post_cat_list li > a {
		padding-left: 2.5vw;
	}
	/*孫カテ*/
	#side_bar aside .jw_post_cat_list li > ul > li > a {
		padding-left: 5vw;
	}
	/*ひ孫以下*/
	#side_bar aside .jw_post_cat_list li > ul > li > ul > li > a {
		padding-left: 7.5vw;
	}
	#side_bar aside .jw_post_cat_list ul li:last-child {
		border-bottom: none;
	}
	/*OPENボタン
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#side_bar .has-child > .btn-icon,
	#side_bar .has-grand > .btn-icon {
		width: 64px;
		height: 64px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
投稿・商品の検索バー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/*記入欄*/
	#side_bar .widget_search .jw_search .wp-block-search__input {
		height: 48px;
		padding: 0 48px 0 16px;
	}
	/*検索ボタン（虫眼鏡）*/
	#side_bar .widget_search .jw_search .wp-block-search__button {
		width: 48px;
	}
	/*アイコン*/
	#side_bar .widget_search .jw_search .wp-block-search__button:before {
		width: 48px;
		font-size: 3rem;
	}

	/*　===============
商品一覧の商品名の高さ（カラム）
===============　*/
	#side_bar .wc-block-grid__product .wc-block-grid__product-title {
		height: 6vw;
	}

	/*　===============
お気に入りに追加ボタン
===============　*/
	#side_bar aside .yith-wcwl-add-button {
		height: 5vw;
	}

	#side_bar aside .yith-wcwl-add-button a {
		height: 100%;
	}

	#side_bar .wc-block-grid__product-price {
		height: 4vw;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
テキスト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/*　===============
引用
===============　*/
	#side_bar .wp-block-quote {
		padding: 6vw;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ウィジェット
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/* =============== 
固定ページリスト 
=============== */

	#side_bar aside .wp-block-archives li {
		padding: 1vw 0;
	}

	/* ===============
最新のコメント
=============== */
	#side_bar .wp-block-latest-comments__comment-meta a {
		height: 8vw;
	}

	/* ===============
最新の投稿
=============== */
	#side_bar aside .wp-block-latest-posts__list li {
		padding: 8px 0;
	}

	#side_bar aside .wp-block-latest-posts__list li a {
		height: 8vw;
	}

	/* =============== 
固定ページリスト 
=============== */
	#side_bar aside .wp-block-page-list li {
		padding: 1vw 0;
	}

	#side_bar aside .wp-block-page-list li a {
		padding-left: 2vw;
		height: 8vw;
	}

	/* =============== 
メタ情報
=============== */
	#side_bar .widget_meta ul li a {
		padding-left: 2vw;
		height: 8vw;
	}

	/* =============== 
ナビゲーションメニュー
=============== */
	#side_bar .widget_nav_menu {
		padding-left: 0;
	}

	#side_bar .widget_nav_menu > ul {
		padding-left: 0;
	}

	#side_bar .widget_nav_menu li {
		padding: 8px 0;
		list-style: none;
	}

	#side_bar .widget_nav_menu li a {
		padding-left: 2vw;
		height: 8vw;
	}

	/* =============== 
最近閲覧された商品リスト
=============== */
	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget li {
		padding: 2.5vw 0 0 2.5vw;
	}

	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget .woocommerce-mini-cart-item .quantity {
		padding: 1.375vw 0;
	}

	/* =============== 
お買い物かご
=============== */
	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget a.remove {
		top: 1vw;
		left: -1vw;
		text-align: center;
	}

	#side_bar .woocommerce-mini-cart__buttons {
		padding: 0;
	}

	/* ===============
AddToAny
=============== */
	#side_bar aside .addtoany_list {
		margin: 0 0 0 2vw;
		display: block;
	}

	/* ===============
パンくずリスト
=============== */
	#side_bar aside .breadcrumbs {
		margin: 0 0 0 2vw;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
テーマ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/* =============== 
アバター
=============== */
	#side_bar aside .wp-block-avatar img {
		width: inherit;
		height: inherit;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
埋め込み
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/* ===============
Tiktok
=============== */
	#side_bar aside .tiktok-embed {
		padding: 48px 0;
		background-color: #fff;
	}

	#side_bar aside .wp-block-embed__wrapper iframe {
		width: 100%;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
YIYH
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#side_bar aside .wishlist-items-wrapper .product-thumbnail {
		width: 100px;
		height: 100px;
		display: block;
	}

	#side_bar aside .wishlist-items-wrapper .product-thumbnail a {
		max-width: 100px !important;
	}

	#side_bar aside .wishlist-items-wrapper .product-thumbnail a img {
		object-fit: cover;
	}

	#side_bar aside .wishlist_table.mobile li .item-wrapper {
		display: flex;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
WooCommerce
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/* =============== 
全てのレビュー
=============== */
	#side_bar aside .wp-block-woocommerce-all-reviews li {
		padding-left: 2vw;
	}

	#side_bar aside .wc-block-sort-select {
		font-size: 1.6rem;
	}

	#side_bar aside .wc-block-sort-select__select {
		height: 6vw;
		padding: 0 0 0 24px;
	}

	#side_bar aside .wc-block-review-list-item__item {
		margin-bottom: 0;
	}

	#side_bar aside .wc-block-components-review-list {
		padding-left: 0;
	}

	/* =============== 
評価 ★
=============== */
	.woocommerce .star-rating {
		width: 5.5em;
	}

	/* =============== 
商品別レビュー
=============== */
	#side_bar aside .wc-block-review-list li {
		padding-left: 2vw;
	}

	/*ここまで*/
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

/*WT PC寄りのタブレット*/
@media screen and (min-width: 960px) and (max-width: 1279px) {
	/*ここから*/
	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
共通
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
サイドバー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#side_bar {
		width: 27%;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ 
コンテンツ 
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WT #side_bar > aside {
		padding: 0;
		margin: 0 auto 40px;
	}
	/*サイドバー下の場合*/
	.WT #side_bar.jb_is_bottom aside {
		width: 100%;
		line-height: 1.8;
		padding: 40px;
		margin: 0;
		border-top-width: 1px;
		border-top-style: solid;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
タイトル
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/*JetBlocksとWPBlocks共通*/
	#side_bar .jbg_side_area_title,
	#side_bar .jw_post_cat_title,
	#side_bar .widget-title {
		padding: 0 0 16px 8px;
		border-bottom-width: 1px;
		border-bottom-style: solid;
	}

	/*サイドバー下の場合*/
	#side_bar.jb_is_bottom .jbg_side_area_title,
	#side_bar.post_sb.jb_is_bottom .jw_post_cat_title,
	#side_bar.jb_is_bottom .jw_post_cat_title,
	#side_bar.jb_is_bottom .widget-title {
		padding: 0 0 24px;
		border: none;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ 
画像
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#side_bar .wp-block-image {
		padding-left: 16px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
投稿・商品カテゴリーセレクト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.jw_post_cat_wrap {
	}
	.jw_post_cat_wrap select {
		width: calc(100% - 16px);
		height: 40px;
		padding-left: 8px;
		margin: 32px auto 0;
	}

	/*商品の場合
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.jw_post_cat_wrap .wc-block-product-categories__dropdown {
		width: calc(100% - 56px);
	}
	/*ボタン*/
	.jw_post_cat_wrap .wc-block-product-categories__button {
		width: 40px;
		height: 40px;
		margin: 32px 0 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ 
投稿・商品カテゴリーリスト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/*タイトル*/
	.jw_post_cat_wrap .jw_post_cat_title {
		padding: 0 0 16px 8px;
	}
	/*カテゴリーリスト 投稿
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#side_bar aside .jw_post_cat_list {
		padding: 0;
		margin: 0 0 0 16px;
	}
	/*サイドバー下の場合*/
	#side_bar.jb_is_bottom aside .jw_post_cat_list {
		border-top-width: 1px;
		border-top-style: solid;
	}
	/*aタグ設定
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#side_bar aside .jw_post_cat_list li a {
		min-height: 64px;
		padding-top: 8px;
		padding-bottom: 8px;
	}
	#side_bar aside .jw_post_cat_list li.has-child > a {
		padding-right: 72px;
	}
	/*商品カテで画像がある場合*/
	#side_bar aside .jw_post_cat_list .wc-block-product-categories-list--has-images a .wc-block-product-categories-list-item__image {
		width: 64px;
		height: 64px;
		margin: 0 16px 0 0;
	}
	/*商品カテで投稿数がある場合*/
	#side_bar aside .jw_post_cat_list a .wc-block-product-categories-list-item-count {
		margin-left: 8px;
	}
	/*子カテ*/
	#side_bar aside .jw_post_cat_list li > a {
		padding-left: 16px;
	}
	/*孫カテ*/
	#side_bar aside .jw_post_cat_list li > ul > li > a {
		padding-left: 32px;
	}
	/*ひ孫以下*/
	#side_bar aside .jw_post_cat_list li > ul > li > ul > li > a {
		padding-left: 48px;
	}
	/*OPENボタン
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#side_bar .has-child > .btn-icon,
	#side_bar .has-grand > .btn-icon {
		width: 64px;
		height: 64px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ 
投稿・商品の検索バー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/*サイドバー下の場合*/
	#side_bar.jb_is_bottom .widget_search .jw_search {
		width: 376px;
	}
	/*記入欄*/
	#side_bar .widget_search .jw_search .wp-block-search__input {
		height: 48px;
		padding: 0 48px 0 16px;
	}

	/*検索ボタン（虫眼鏡）*/
	#side_bar .widget_search .jw_search .wp-block-search__button {
		width: 48px;
	}
	/*アイコン*/
	#side_bar .widget_search .jw_search .wp-block-search__button:before {
		width: 48px;
		font-size: 2rem;
	}

	/* ===============
リスト(人気記事・新着記事)
=============== */
	#side_bar .side_list li {
		display: flex;
		padding-bottom: 16px;
		margin-bottom: 16px;
		border-bottom-width: 1px;
	}

	#side_bar .side_list li:last-child {
		padding-bottom: 0;
		margin-bottom: 0;
		border-bottom: none;
	}

	#side_bar .side_list li .img_box {
		width: 64px;
		height: 64px;
		margin: 0 16px 0 0;
	}

	#side_bar .side_list li .entry_box {
		width: 192px;
		height: 64px;
	}

	#side_bar .side_list li .post_title {
		margin-bottom: 10px;
	}

	#side_bar .side_list li .post_title a {
		font-size: 12px;
		padding: 0;
	}

	#side_bar .side_list li .cat_box a {
		font-size: 11px;
		padding: 0;
		margin: 0 8px 0 0;
	}

	#side_bar .side_list li .cat_box a::before {
		font-size: 11px;
		margin-right: 8px;
		width: 12px;
		height: 10px;
	}

	#side_bar .side_list li .number {
		position: absolute;
		bottom: 11px;
		font-size: 42px;
	}
	#side_bar .side_list li:last-child .number {
		bottom: -5px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
テキスト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

	/* =============== 
引用
===============  */
	#side_bar .wp-block-quote {
		padding: 48px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ウィジェット
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/*　=============== 
アーカイブ
=============== */
	#side_bar aside .wp-block-archives-list li {
		padding: 8px 0;
	}

	/*　=============== 
カテゴリー
=============== */
	#side_bar aside .wp-block-categories-list li {
		padding: 8px 0;
	}

	/*===============
最近のコメント
=============== */
	#side_bar aside .wp-block-latest-comments__comment img,
	#side_bar aside .wp-block-latest-comments__comment article {
		margin-left: 16px;
	}

	/* ===============
最近の投稿
=============== */
	#side_bar aside .wp-block-latest-posts__list li {
		width: 100%;
		padding: 8px 0;
		overflow: hidden;
	}

	#side_bar aside .wp-block-latest-posts__list li .wp-block-latest-posts__featured-image {
		float: left;
		max-height: 80px;
		overflow: hidden;
		margin: 0 16px 0 0;
	}

	#side_bar aside .wp-block-latest-posts__list li .wp-block-latest-posts__featured-image img {
		width: 120px;
		height: auto;
	}

	#side_bar aside .wp-block-latest-posts__list li a {
		width: auto;
		height: 64px;
		padding: 0 0 0 16px;
	}

	/* ===============
固定ページリスト
=============== */
	#side_bar aside .wp-block-page-list {
		margin: 24px 0 0 16px;
		padding-left: 0;
	}

	#side_bar aside .wp-block-page-list li {
		padding: 8px 0;
	}

	#side_bar aside .wp-block-page-list li.has-child.active > a {
		margin-bottom: 8px;
	}

	#side_bar aside .wp-block-page-list li .submenu-container {
		display: none;
	}

	#side_bar aside .wp-block-page-list li.has-child.active > .submenu-container {
		display: block;
	}

	/* ===============
カレンダー
=============== */
	#side_bar .wp-block-calendar {
		padding: 0 16px;
	}
	#side_bar .wp-block-calendar table caption {
		margin-bottom: 16px;
	}
	#side_bar .wp-block-calendar tbody td,
	.wp-block-calendar th {
		font-size: 1.4rem;
		height: 48px;
		vertical-align: middle;
		padding: 0px;
	}
	#side_bar tbody td a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		font-size: 1.4rem;
		padding: 0px;
		vertical-align: middle;
	}
	#side_bar .wp-calendar-nav {
		display: flex;
		justify-content: space-between;
		padding: 16px 16px 0;
	}
	#side_bar .wp-calendar-nav span a {
		border-bottom: none;
		padding: 0px;
		font-size: 1.4rem;
	}

	/* ===============
タグクラウド
=============== */
	#side_bar .wp-block-tag-cloud,
	#side_bar .widget_product_tag_cloud .tagcloud {
		padding: 24px 24px 0;
	}

	#side_bar .wp-block-tag-cloud a,
	#side_bar .widget_product_tag_cloud .tagcloud a {
		padding: 8px 14px;
		margin: 0 16px 16px 0;
		font-size: 1.2rem !important;
		border-width: 1px;
	}

	/* ===============
商品一覧
=============== */
	#side_bar .product_list_widget {
		margin: 16px 0 0 0;
	}

	#side_bar .product_list_widget li {
		height: auto;
		padding: 16px 0;
		text-align: right;
	}

	#side_bar .product_list_widget a {
		height: 100%;
		margin-left: 16px;
		overflow: hidden;
		text-align: left;
	}

	#side_bar .product_list_widget a img {
		max-width: 80px;
		min-width: 80px;
		width: 80px;
		height: 80px;
	}

	#side_bar .product_list_widget .woocommerce-Price-amount {
		font-size: 1.4rem;
	}

	#side_bar .product_list_widget del .woocommerce-Price-amount {
		font-size: 1rem;
	}

	#side_bar .product_list_widget ins {
		text-decoration: none;
	}
	#side_bar .product_list_widget ins .woocommerce-Price-amount {
		font-size: 1.4rem;
		margin: 0 0 0 16px;
	}

	#side_bar .product_list_widget .woocommerce-price-suffix {
		font-size: 1rem;
		font-weight: normal;
	}

	#side_bar .product_list_widget .star-rating {
		margin: 0 0 8px auto;
		font-size: 1.6rem;
	}

	/* ===============
ナビゲーション
=============== */
	#side_bar .widget_nav_menu > div > ul {
		margin-left: 16px;
	}

	#side_bar .widget_nav_menu li {
		padding: 8px 0;
	}

	/* ===============
メタ情報
=============== */
	#side_bar .widget_meta ul {
		margin-left: 16px;
		padding: 0;
	}

	#side_bar .widget_meta li {
		padding: 8px 0;
	}

	/* ===============
AddToAny
=============== */
	#side_bar aside .addtoany_list {
		margin: 0 0 0 16px;
		display: block;
	}

	/* ===============
パンくずリスト
=============== */
	#side_bar aside .breadcrumbs {
		margin: 0 0 0 16px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
テーマ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/* ===============
アバター
=============== */
	#side_bar aside .wp-block-avatar__link img {
		width: inherit;
		height: inherit;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
埋め込み
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/* ===============
Tiktok
=============== */
	#side_bar aside .tiktok-embed {
		padding: 48px 0;
		background-color: #fff;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
YIYH
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#side_bar aside .wishlist-items-wrapper .product-remove a {
		width: auto;
		height: auto;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
WooCommerce
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/* ===============
共通
=============== */
	#side_bar .wc-block-grid__product-price {
		height: 50px;
	}

	#side_bar aside .wc-block-grid__product {
		margin-bottom: 32px;
	}

	.yith-wcwl-add-button {
		margin-top: 0;
	}

	.yith-wcwl-add-button a {
		padding-left: 0 !important;
	}

	/* ===============
すべてのレビュー
=============== */
	#side_bar aside .wc-block-components-sort-select__select {
		height: 56px;
	}

	/* ===============
Hand-picked Products
=============== */
	#side_bar .has-1-columns .wc-block-grid__product .wc-block-grid__product-link {
		display: flex;
	}

	#side_bar .has-1-columns .wc-block-grid__product .wc-block-grid__product-link .wc-block-grid__product-image img {
		max-width: 150px;
		height: 150px;
		object-fit: cover;
	}

	#side_bar .has-1-columns .wc-block-grid__product .wc-block-grid__product-title {
		font-size: 16px;
		margin-left: 8px;
		padding-bottom: 32px;
	}

	#side_bar .has-1-columns .wc-block-grid__product-price {
		font-size: 16px;
	}

	#side_bar .has-1-columns .wc-block-grid__product-price ins span {
		color: #dd3333;
	}

	#side_bar .has-1-columns .wc-block-grid__product del {
		font-size: 12px;
	}

	#side_bar .has-1-columns .wc-block-grid__product-price small {
		font-size: 12px;
	}

	#side_bar .has-1-columns .wc-block-grid__product-onsale {
		position: absolute;
	}

	#side_bar .has-1-columns .wc-block-grid__product-price {
		position: absolute;
		top: 110px;
		right: 16px;
	}

	/* ===============
お買い物カゴ
=============== */
	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget {
		padding: 0;
	}

	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget li {
		padding: 24px 0 24px 16px;
	}

	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget li:first-child {
		border-top: 1px dotted #bfbaba;
	}

	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget li:not(:last-child) {
		margin-bottom: 0;
	}

	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget a {
		display: flex;
		font-size: 1.6rem;
		height: auto;
	}

	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget a.remove {
		width: 24px;
		height: 24px;
		padding: 0;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 14px;
		font-size: 3rem;
		line-height: 1;
	}

	#side_bar .woocommerce-mini-cart__buttons {
		padding-left: 0;
	}

	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget img {
		max-width: 80px;
		min-width: 80px;
		height: 80px;
		float: right;
		margin-right: 20px;
	}

	#side_bar .widget_shopping_cart .product_list_widget .mini_cart_item .variation {
		position: relative;
		padding: 16px 0 0 24px;
	}

	#side_bar .widget_shopping_cart .product_list_widget .mini_cart_item .variation .v_box {
		font-size: 1.4rem;
	}

	#side_bar .widget_shopping_cart .product_list_widget .mini_cart_item .variation .v_box dt,
	#side_bar .widget_shopping_cart .product_list_widget .mini_cart_item .variation .v_box dd {
		margin: 0;
	}

	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget .woocommerce-mini-cart-item .quantity {
		clear: both;
		display: block;
		padding: 16px 0 0;
		font-size: 1.6rem;
		font-weight: bold;
		text-align: right;
	}

	#side_bar .widget_shopping_cart .total,
	.woocommerce.widget_shopping_cart .total {
		border-top: none;
		padding: 24px 0;
		text-align: right;
	}

	#side_bar .widget_shopping_cart .buttons a,
	.woocommerce.widget_shopping_cart .buttons a {
		height: 48px;
	}

	/* ===============
最新のコメント
=============== */
	#side_bar .widget_recent_comments ul {
		padding: 0 16px;
	}

	#side_bar .widget_recent_comments .recentcomments {
		padding: 16px 0;
	}

	/* ===============
商品別レビュー
=============== */
	#side_bar aside .wc-block-review-list li {
		padding-left: 16px;
	}

	/* ===============
カテゴリー
=============== */
	#side_bar .side_category_list {
		margin: 0 auto 40px;
	}

	#side_bar .side_category_list .side_cont_title::before {
		top: 2px;
		font-size: 1.6rem;
		margin-right: 8px;
	}

	#side_bar .side_category_list ul {
		display: block;
		padding-left: 8px;
		margin-bottom: 0;
	}

	#side_bar .side_category_list li {
		position: relative;
		margin-bottom: 0;
	}

	#side_bar .side_category_list li:last-child {
		margin-bottom: 0;
	}

	#side_bar .side_category_list li::before {
		content: "";
		position: absolute;
		top: 16px;
		bottom: 0;
		left: 0;
		margin: 0;
		display: inline-block;
		width: 12px;
		height: 1px;
	}

	#side_bar .side_category_list li:last-child:after {
		display: none;
	}

	#side_bar .side_category_list li a {
		display: flex;
		align-items: center;
		font-size: 1.4rem;
		height: 32px;
		margin: 0 0 0 24px;
	}

	/* ===============
子のul
===============*/
	#side_bar .side_category_list li .children {
		display: none;
		padding: 0 0 0 24px;
	}

	#side_bar .side_category_list li .children > li::before {
		content: "";
		position: absolute;
		top: 10px;
		bottom: 0;
		left: 0;
		margin: 0;
		display: inline-block;
		width: 1px;
		height: 8px;
	}

	#side_bar .side_category_list li .children > li::after {
		content: "";
		position: absolute;
		top: 18px;
		bottom: 0;
		left: 0;
		margin: 0;
		display: inline-block;
		width: 10px;
		height: 1px;
	}

	/* ===============
OPENボタン
=============== */
	#side_bar .side_category_list .has-child > .btn-icon,
	#side_bar .side_category_list .has-grand > .btn-icon {
		position: absolute;
		top: 0;
		right: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 32px;
		height: 32px;
	}

	#side_bar .side_category_list .has-child > .btn-icon::before,
	#side_bar .side_category_list .has-grand > .btn-icon::before {
		content: "\f489";
		cursor: pointer;
		font-family: ionicons;
		font-size: 2rem;
		font-weight: bold;
	}

	/* ===============
商品エリア2
=============== */
	#side_bar .wc-block-grid__products {
		display: flex;
		justify-content: flex-start;
	}

	#side_bar .wc-block-grid.has-3-columns .wc-block-grid__product {
		width: 33%;
	}

	#side_bar .has-3-columns .wc-block-grid__product .wc-block-grid__product-link {
		width: 100%;
		height: auto;
		display: block;
	}

	#side_bar .has-3-columns .wc-block-grid__product .wc-block-grid__product-title {
		font-size: 12px;
	}

	#side_bar .has-3-columns .wc-block-grid__product del {
		font-size: 12px;
	}

	#side_bar .wc-block-grid .has-3-columns .wc-block-grid__product ins .woocommerce-Price-amount {
		font-size: 14px;
		padding-left: 3px;
	}

	#side_bar .wc-block-grid .has-3-columns .wc-block-grid__product ins .woocommerce-Price-currencySymbol {
		font-size: 12px;
	}

	#side_bar .has-3-columns .wc-block-grid__product-price small {
		font-size: 12px;
	}

	#side_bar .has-3-columns .wc-block-grid__product-price {
		font-size: 12px;
	}

	#side_bar .has-3-columns .wc-block-grid__product-onsale {
		position: relative;
		margin: 0;
	}

	#side_bar .wc-block-grid.has-3-columns .wc-block-grid__product ins .woocommerce-Price-amount {
		font-size: 16px;
		padding: 0;
	}

	#side_bar .wc-block-grid.has-3-columns .wc-block-grid__product ins .woocommerce-Price-currencySymbol {
		font-size: 12px;
	}

	.wc-block-components-review-list-item__item {
		margin: 0 0 16px;
		padding: 0 0 24px 16px;
	}

	#side_bar aside .wp-block-woocommerce-all-reviews li:first-child {
		padding-top: 1em;
	}

	#side_bar aside .wp-block-woocommerce-all-reviews li {
		padding-bottom: 16px;
		padding-left: 16px;
	}

	/* ===============
セールタグ
=============== */
	#side_bar .wc-block-grid__product-onsale {
		position: absolute !important;
		padding: 0.25em 0.75em;
		top: 8px;
		left: -6px;
	}

	/* ===============
商品タイトル
=============== */
	#side_bar .has-3-columns .wc-block-grid__product .wc-block-grid__product-title {
		height: 44px;
	}

	/* ===============
評価 ★
=============== */
	#side_bar aside .wc-block-grid__product .star-rating {
		font-size: 0.9em;
		width: 5.5em;
	}

	/* ===============
ミニお買い物カゴ
=============== */
	#side_bar aside .wc-block-mini-cart button {
		font-size: 1.6rem;
	}

	/* ===============
商品別レビュー
=============== */
	#side_bar aside .wc-block-review-list {
		padding: 0;
	}

	/* ===============
評価の高い商品
=============== */
	#side_bar aside .has-2-columns .wc-block-grid__product-title {
		height: 40px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}

	/* ===============
商品検索
=============== */
	#side_bar aside .wp-block-woocommerce-product-search form {
		padding: 0;
		font-size: 1.6rem;
	}

	/*ここまで*/
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

/*PC*/
@media only screen and (min-width: 1280px) {
	/*ここから*/
	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
共通
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WPC #side_bar {
		width: 376px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
コンテンツ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.WPC #side_bar aside {
		width: 100%;
		line-height: 1.8;
		padding: 0;
		margin: 0 auto 40px;
	}
	.WPC #side_bar.jb_is_bottom aside {
		width: 100%;
		line-height: 1.8;
		padding: 40px calc((100% - 1280px) / 2);
		margin: 0;
		border-top-width: 1px;
		border-top-style: solid;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
タイトル
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/*JetBlocksとWPBlocks共通*/
	.WPC #side_bar .jbg_side_area_title,
	.WPC #side_bar .jw_post_cat_title,
	.WPC #side_bar .widget-title {
		padding: 0 0 16px 8px;
		border-bottom-width: 1px;
		border-bottom-style: solid;
	}

	/*サイドバー下の場合*/
	#side_bar.jb_is_bottom .jbg_side_area_title,
	#side_bar.jb_is_bottom .jw_post_cat_title,
	#side_bar.jb_is_bottom .widget-title {
		padding: 0 0 24px;
		border: none;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ 
画像
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#side_bar .wp-block-image {
		padding-left: 16px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
投稿・商品カテゴリーセレクト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.jw_post_cat_wrap {
	}
	.jw_post_cat_wrap select {
		width: calc(100% - 16px);
		height: 40px;
		padding-left: 8px;
		margin: 32px auto 0;
	}

	/*商品の場合
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.jw_post_cat_wrap .wc-block-product-categories__dropdown {
		width: calc(100% - 56px);
	}
	/*ボタン*/
	.jw_post_cat_wrap .wc-block-product-categories__button {
		width: 40px;
		height: 40px;
		margin: 32px 0 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ 
投稿・商品カテゴリーリスト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/*タイトル*/
	.jw_post_cat_wrap .jw_post_cat_title {
		padding: 0 0 16px 8px;
	}
	/*カテゴリーリスト 投稿
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#side_bar aside .jw_post_cat_list {
		padding: 0;
		margin: 0 0 0 16px;
	}
	/*サイドバー下の場合*/
	#side_bar.jb_is_bottom aside .jw_post_cat_list {
		border-top-width: 1px;
		border-top-style: solid;
	}
	/*aタグ設定
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#side_bar aside .jw_post_cat_list li a {
		min-height: 64px;
		padding-top: 8px;
		padding-bottom: 8px;
	}
	#side_bar aside .jw_post_cat_list li.has-child > a {
		padding-right: 72px;
	}
	/*商品カテで画像がある場合*/
	#side_bar aside .jw_post_cat_list .wc-block-product-categories-list--has-images a .wc-block-product-categories-list-item__image {
		width: 64px;
		height: 64px;
		margin: 0 16px 0 0;
	}
	/*商品カテで投稿数がある場合*/
	#side_bar aside .jw_post_cat_list a .wc-block-product-categories-list-item-count {
		margin-left: 8px;
	}
	/*子カテ*/
	#side_bar aside .jw_post_cat_list li > a {
		padding-left: 16px;
	}
	/*孫カテ*/
	#side_bar aside .jw_post_cat_list li > ul > li > a {
		padding-left: 32px;
	}
	/*ひ孫以下*/
	#side_bar aside .jw_post_cat_list li > ul > li > ul > li > a {
		padding-left: 48px;
	}
	/*OPENボタン
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#side_bar .has-child > .btn-icon,
	#side_bar .has-grand > .btn-icon {
		width: 64px;
		height: 64px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
投稿・商品の検索バー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/*サイドバー下の場合*/
	#side_bar.jb_is_bottom .widget_search .jw_search {
		width: 376px;
	}
	/*記入欄*/
	#side_bar .widget_search .jw_search .wp-block-search__input {
		height: 40px;
		padding: 0 40px 0 16px;
	}

	/*検索ボタン（虫眼鏡）*/
	#side_bar .widget_search .jw_search .wp-block-search__button {
		width: 40px;
	}
	/*アイコン*/
	#side_bar .widget_search .jw_search .wp-block-search__button:before {
		width: 40px;
		font-size: 2rem;
	}

	/* ===============
リスト(人気記事・新着記事)
=============== */
	#side_bar .side_list li {
		display: flex;
		padding-bottom: 16px;
		margin-bottom: 16px;
		border-bottom-width: 1px;
	}

	#side_bar .side_list li:last-child {
		padding-bottom: 0;
		margin-bottom: 0;
		border-bottom: none;
	}

	#side_bar .side_list li .img_box {
		width: 64px;
		height: 64px;
		margin: 0 16px 0 0;
	}

	#side_bar .side_list li .entry_box {
		width: 192px;
		height: 64px;
	}

	/* 商品タイトル */
	#side_bar .wc-block-grid__product .wc-block-grid__product-title {
		height: auto;
	}

	/* セールタグ */
	#side_bar .wc-block-grid__product-onsale {
		padding: 0.25em 0.75em;
		position: absolute !important;
		top: 8px;
		left: -6px;
	}

	/* ===============
評価 ★
=============== */
	#side_bar aside .wc-block-grid__product .star-rating {
		width: 5.5em;
	}

	#side_bar .side_list li .post_title {
		margin-bottom: 10px;
	}

	#side_bar .side_list li .post_title a {
		font-size: 12px;
		padding: 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
テキスト
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/*　===============
引用
===============　*/
	#side_bar .wp-block-quote {
		padding: 48px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
デザイン
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ウィジェット
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/*　===============
アーカイブ
===============　*/
	#side_bar aside .wp-block-archives-list li {
		padding: 8px 0;
	}

	/*===============
最近のコメント
=============== */
	#side_bar aside .wp-block-latest-comments__comment img,
	#side_bar aside .wp-block-latest-comments__comment article {
		margin-left: 16px;
	}

	/* ===============
商品タイトル
=============== */
	#side_bar .wc-block-grid__product .wc-block-grid__product-title {
		height: 64px;
	}

	/* ===============
カレンダー
=============== */
	#side_bar .wp-block-calendar table caption {
		margin-bottom: 16px;
	}

	#side_bar .wp-block-calendar tbody td,
	.wp-block-calendar th {
		font-size: 1.4rem;
		height: 48px;
		vertical-align: middle;
		padding: 0px;
	}

	#side_bar tbody td a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		font-size: 1.4rem;
		padding: 0px;
		vertical-align: middle;
	}

	#side_bar .wp-calendar-nav {
		display: flex;
		justify-content: space-between;
		padding: 16px 16px 0;
	}

	#side_bar .wp-calendar-nav span a {
		border-bottom: none;
		padding: 0px;
		font-size: 1.4rem;
	}

	/* ===============
最新の投稿
=============== */
	#side_bar aside .wp-block-latest-posts__list li {
		width: 100%;
		padding: 8px 0;
		overflow: hidden;
	}

	#side_bar .wp-block-latest-posts__list li .wp-block-latest-posts__featured-image {
		float: left;
		max-height: 80px;
		overflow: hidden;
		margin: 0 16px 0 0;
	}

	#side_bar .wp-block-latest-posts__list li .wp-block-latest-posts__featured-image img {
		width: 120px;
		height: auto;
	}

	#side_bar .wp-block-latest-posts__list li a {
		width: auto;
		height: 60px;
	}

	/* =============== 
固定ページリスト
=============== */
	#side_bar aside .wp-block-page-list {
		margin: 0 0 0 16px;
		padding-left: 0;
	}

	#side_bar aside .wp-block-page-list li {
		padding: 8px 0;
		position: relative;
	}

	#side_bar aside .wp-block-page-list li.has-child > .submenu-container {
		margin-top: 8px;
	}

	#side_bar aside .wp-block-page-list li .submenu-container {
		display: none;
	}

	#side_bar aside .wp-block-page-list li.has-child.active > .submenu-container {
		display: block;
	}

	#side_bar aside .wp-block-page-list .submenu-container li {
		padding: 8px;
	}

	/* ===============
タグクラウド
=============== */
	#side_bar .wp-block-tag-cloud,
	#side_bar .widget_product_tag_cloud .tagcloud {
		margin: 0 0 0 16px;
		padding: 0;
	}

	#side_bar .wp-block-tag-cloud a,
	#side_bar .widget_product_tag_cloud .tagcloud a {
		padding: 8px 14px;
		margin: 0 16px 16px 0;
		font-size: 1.2rem !important;
		border-width: 1px;
	}

	/* ===============
商品一覧
=============== */
	#side_bar .product_list_widget {
		margin: 0 0 0 16px;
	}

	#side_bar .product_list_widget li {
		height: auto;
		padding: 16px 0;
		text-align: right;
	}

	#side_bar .product_list_widget a {
		height: 100%;
		padding-left: 16px;
		overflow: hidden;
		text-align: left;
	}

	#side_bar .product_list_widget a img {
		max-width: 120px;
		min-width: 120px;
		width: 120px;
		height: 120px;
		margin: 0 16px 0 0;
	}

	#side_bar .product_list_widget .woocommerce-Price-amount {
		font-size: 1.4rem;
	}

	#side_bar .product_list_widget del .woocommerce-Price-amount {
		font-size: 1rem;
	}

	#side_bar .product_list_widget ins {
		text-decoration: none;
	}

	#side_bar .product_list_widget ins .woocommerce-Price-amount {
		font-size: 1.4rem;
		margin: 0 0 0 16px;
	}

	#side_bar .product_list_widget .woocommerce-price-suffix {
		font-size: 1rem;
		font-weight: normal;
	}

	#side_bar .product_list_widget .star-rating {
		margin: 0 0 8px auto;
		font-size: 1.6rem;
	}

	#side_bar .has-1-columns .wc-block-grid__product .wc-block-grid__product-link {
		display: flex;
	}

	#side_bar .has-1-columns .wc-block-grid__product .wc-block-grid__product-link .wc-block-grid__product-image img {
		max-width: 150px;
		height: 150px;
		object-fit: cover;
	}

	#side_bar .has-1-columns .wc-block-grid__product .wc-block-grid__product-title {
		font-size: 16px;
		margin-left: 8px;
		padding-bottom: 32px;
	}

	#side_bar .has-1-columns .wc-block-grid__product-price {
		font-size: 16px;
	}

	#side_bar .has-1-columns .wc-block-grid__product-price ins span {
		color: #dd3333;
	}

	#side_bar .has-1-columns .wc-block-grid__product del {
		font-size: 12px;
	}

	#side_bar .has-1-columns .wc-block-grid__product-price small {
		font-size: 12px;
	}

	#side_bar .has-1-columns .wc-block-grid__product-onsale {
		position: absolute;
	}

	#side_bar .has-1-columns .wc-block-grid__product-price {
		position: absolute;
		top: 110px;
		right: 16px;
	}

	/* ===============
お買い物カゴ
=============== */
	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget {
		padding: 16px 0 0 0;
	}

	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget li {
		padding: 24px 0 24px 24px;
	}

	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget li:first-child {
		border-top: 1px dotted #bfbaba;
	}

	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget li:not(:last-child) {
		margin-bottom: 0;
	}

	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget a {
		display: flex;
		font-size: 1.6rem;
		height: auto;
	}

	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget a.remove {
		position: absolute;
		top: 18px;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 32px;
		width: 32px;
		font-size: 3rem;
		padding: 0;
		line-height: 1;
	}

	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget img {
		width: 100% !important;
		height: 120px;
		min-width: 120px;
		max-width: 120px;
		margin-right: 16px;
		object-fit: cover;
	}

	#side_bar .widget_shopping_cart .product_list_widget .mini_cart_item .variation {
		position: relative;
		padding: 16px 0 0 24px;
	}

	#side_bar .widget_shopping_cart .product_list_widget .mini_cart_item .variation .v_box {
		font-size: 1.4rem;
	}

	#side_bar .widget_shopping_cart .product_list_widget .mini_cart_item .variation .v_box dt,
	#side_bar .widget_shopping_cart .product_list_widget .mini_cart_item .variation .v_box dd {
		margin: 0;
	}

	#side_bar .widget_shopping_cart .widget_shopping_cart_content .product_list_widget .woocommerce-mini-cart-item .quantity {
		clear: both;
		display: block;
		padding: 16px 0 0;
		font-size: 1.6rem;
		font-weight: bold;
		text-align: right;
	}

	#side_bar .widget_shopping_cart .total,
	.woocommerce.widget_shopping_cart .total {
		border-top: none;
		padding: 24px 0;
		text-align: right;
	}

	#side_bar .widget_shopping_cart .buttons a,
	.woocommerce.widget_shopping_cart .buttons a {
		height: 48px;
	}

	#side_bar .woocommerce-mini-cart__buttons {
		padding-left: 0;
	}

	/* ===============
最新のコメント
=============== */
	#side_bar .widget_recent_comments ul {
		padding: 0 16px;
	}

	#side_bar .widget_recent_comments .recentcomments {
		padding: 16px 0;
	}

	/* ===============
カテゴリー
=============== */
	#side_bar aside .wp-block-categories-list .has-child > .btn-icon {
		height: 64px;
	}

	#side_bar aside .wp-block-categories-list .has-child.active > a {
		margin-bottom: 8px;
	}

	#side_bar .side_list li .cat_box a {
		font-size: 11px;
		padding: 0;
		margin: 0 8px 0 0;
	}

	#side_bar .side_list li .cat_box a::before {
		font-size: 11px;
		margin-right: 8px;
		width: 12px;
		height: 10px;
	}

	#side_bar .side_list li .number {
		position: absolute;
		bottom: 11px;
		font-size: 42px;
	}

	#side_bar .side_list li:last-child .number {
		bottom: -5px;
	}

	#side_bar .side_category_list {
		margin: 0 auto 40px;
	}

	#side_bar .side_category_list .side_cont_title::before {
		top: 2px;
		font-size: 1.6rem;
		margin-right: 8px;
	}

	#side_bar .side_category_list ul {
		display: block;
		padding-left: 8px;
		margin-bottom: 0;
	}

	#side_bar .side_category_list li {
		position: relative;
		margin-bottom: 0;
	}

	#side_bar .side_category_list li:last-child {
		margin-bottom: 0;
	}

	#side_bar .side_category_list li::before {
		content: "";
		position: absolute;
		top: 16px;
		bottom: 0;
		left: 0;
		margin: 0;
		display: inline-block;
		width: 12px;
		height: 1px;
	}

	#side_bar .side_category_list li:last-child:after {
		display: none;
	}

	#side_bar .side_category_list li a {
		display: flex;
		align-items: center;
		font-size: 1.4rem;
		height: 32px;
		margin: 0 0 0 24px;
	}

	#side_bar .side_category_list li .children {
		display: none;
		padding: 0 0 0 24px;
	}

	#side_bar .side_category_list li .children > li::before {
		content: "";
		position: absolute;
		top: 10px;
		bottom: 0;
		left: 0;
		margin: 0;
		display: inline-block;
		width: 1px;
		height: 8px;
	}

	#side_bar .side_category_list li .children > li::after {
		content: "";
		position: absolute;
		top: 18px;
		bottom: 0;
		left: 0;
		margin: 0;
		display: inline-block;
		width: 10px;
		height: 1px;
	}

	#side_bar .side_category_list .has-child > .btn-icon,
	#side_bar .side_category_list .has-grand > .btn-icon {
		position: absolute;
		top: 0;
		right: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 32px;
		height: 32px;
	}

	#side_bar .side_category_list .has-child > .btn-icon::before,
	#side_bar .side_category_list .has-grand > .btn-icon::before {
		content: "\f489";
		cursor: pointer;
		font-family: ionicons;
		font-size: 2rem;
		font-weight: bold;
	}

	#side_bar aside .wp-block-categories-list li {
		padding: 0 0;
		position: relative;
	}

	/* ===============
メタ情報
=============== */
	#side_bar .widget_meta ul {
		margin: 0 0 0 16px;
		padding: 0;
	}

	#side_bar .widget_meta ul li {
		padding: 8px 0;
	}

	/* ===============
ナビゲーションメニュー
=============== */
	#side_bar .widget_nav_menu ul {
		margin: 0 0 0 16px;
	}

	#side_bar .widget_nav_menu ul li {
		padding: 0;
	}

	#side_bar .widget_nav_menu ul li a {
		height: 80px;
	}

	/* ===============
商品エリア2
=============== */
	#side_bar .wc-block-grid__products {
		display: flex;
		justify-content: flex-start;
	}

	#side_bar .wc-block-grid.has-3-columns .wc-block-grid__product {
		width: 33%;
	}

	#side_bar .has-3-columns .wc-block-grid__product .wc-block-grid__product-link {
		width: 100%;
		height: auto;
		display: block;
	}

	#side_bar .has-3-columns .wc-block-grid__product .wc-block-grid__product-title {
		font-size: 12px;
	}

	#side_bar .has-3-columns .wc-block-grid__product del {
		font-size: 12px;
	}

	#side_bar .wc-block-grid .has-3-columns .wc-block-grid__product ins .woocommerce-Price-amount {
		font-size: 14px;
		padding-left: 3px;
	}

	#side_bar .wc-block-grid .has-3-columns .wc-block-grid__product ins .woocommerce-Price-currencySymbol {
		font-size: 12px;
	}

	#side_bar .has-3-columns .wc-block-grid__product-price small {
		font-size: 12px;
	}

	#side_bar .has-3-columns .wc-block-grid__product-price {
		font-size: 12px;
	}

	#side_bar .has-3-columns .wc-block-grid__product-onsale {
		position: relative;
		margin: 0;
	}

	#side_bar .wc-block-grid.has-3-columns .wc-block-grid__product ins .woocommerce-Price-amount {
		font-size: 16px;
		padding: 0;
	}

	#side_bar .wc-block-grid.has-3-columns .wc-block-grid__product ins .woocommerce-Price-currencySymbol {
		font-size: 12px;
	}

	/* ===============
従来のウィジェット
=============== */
	#side_bar aside .breadcrumbs {
		margin-left: 16px;
		font-size: 1.6rem;
	}

	/* ===============
ナビゲーション
=============== */
	#side_bar aside .widget_nav_menu li {
		padding: 8px 0;
	}

	/* ===============
Featured Category
=============== */
	#side_bar aside .wp-block-woocommerce-featured-category {
		min-height: 376px !important;
	}

	#side_bar aside .wp-block-woocommerce-featured-category img {
		object-fit: cover;
	}

	/* ===============
Featured Products
=============== */
	#side_bar aside .wp-block-woocommerce-featured-product {
		min-height: 376px;
	}

	#side_bar aside .wp-block-woocommerce-featured-product img {
		object-fit: cover !important;
	}

	/* ===============
AddToAny
=============== */
	#side_bar aside .addtoany_list {
		margin-left: 16px;
		display: block;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
テーマ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/* ===============
アバター
=============== */
	#side_bar aside .wp-block-avatar__link img {
		width: inherit;
		height: inherit;
	}

	/* ===============
コメントクエリーループ
=============== */
	#side_bar aside .wc-block-review-list li {
		padding: 1em 0 1em 1em;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
埋め込み
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/* ===============
Tiktok
=============== */
	#side_bar aside .tiktok-embed {
		padding: 48px 0;
		background-color: #fff;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
YIYH
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#side_bar aside .wishlist-items-wrapper .product-remove a {
		width: 24px;
		height: 24px;
		justify-content: center;
		text-align: center;
	}

	/* ===============
YIYH Wishlist
=============== */
	#side_bar aside .product-thumbnail {
		padding: 0;
	}

	#side_bar aside .product-thumbnail a {
		height: 56px;
	}

	#side_bar aside .product-thumbnail a img {
		object-fit: cover;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
Woocommerce
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/* ===============
共通
=============== */
	#side_bar aside .yith-wcwl-add-button {
		height: auto;
	}

	#side_bar aside .yith-wcwl-add-button a {
		margin-top: 24px;
		padding: 0;
	}

	/* ===============
すべてのレビュー
=============== */
	#side_bar aside .wc-block-components-sort-select__select {
		height: 56px;
		padding: 0 8px;
	}

	/* ===============
商品別レビュー
=============== */
	#side_bar aside .wc-block-review-list {
		padding-left: 0;
	}

	/* ===============
Hand-picked Productions
=============== */
	#side_bar .wc-block-grid__product-price {
		height: 50px;
		margin: 12px auto;
	}

	#side_bar aside .yith-wcwl-add-button {
		margin-top: 0;
	}

	#side_bar aside .wc-block-grid__product {
		margin: 0 0 32px 0;
	}

	/* ===============
ミニお買い物かご
=============== */
	#side_bar aside .wc-block-mini-cart__button {
		font-size: 1.6rem;
	}

	/*ここまで*/
}
@charset "utf-8";
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
【20221202_服部記述】アニメーション補助
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/* .archive .post_style ul li {
  opacity: 0;
} */

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
投稿共通
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.post_style {
	/* margin: 27.5vw 0 0; */
	margin: 15vw 0 0;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
SINGLE
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ページタイトル
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.post_type_head {
	width: 100%;
	height: 50vw;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.post_area_bg {
}
.pth_wrap {
	width: 100%;
	height: 100%;
}
.title_box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0 6.25vw 2.5vw;
	text-align: center;
	background: rgba(255, 255, 255, 0.72);
}
.title_box .title {
	font-size: 2.4rem;
	font-weight: normal;
}
.title_box .sub_title {
	font-size: 1rem;
	font-weight: normal;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
パスワード保護
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.post-password-form {
	width: 80%;
	max-width: 1000px;
	margin: 0 auto;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
記事
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#blog_wrap {
	width: 100%;
	overflow: hidden;
}
#blog_area {
	width: 100%;
	overflow: hidden;
}
#blog_cont {
}

/*ブログヘッダー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.blog_head {
	padding: 0 0 0 2.5vw;
	margin-bottom: 7.5vw;
}
/*カテゴリー
====================================*/
.blog_head .cat_entry {
	position: relative;
	left: -2.5vw;
	float: left;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.blog_head .cat_entry .cat_box {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 2.5vw;
	height: auto;
	margin: 0 3.75vw 3.75vw 0;
	font-size: 1.6rem;
	line-height: 1.7;
}

/*公開日・更新日
====================================*/
.blog_head .day_entry {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	font-size: 1.2rem;
	padding: 2.1875vw 0 0;
	line-height: 1;
}
.blog_head .day_entry span::before {
	content: "\f3b3";
	position: relative;
	top: 0;
	font-family: "Ionicons";
	font-size: 1.4rem;
	margin: 0 0.625vw 0 0;
}
/*記事タイトル
====================================*/
.blog_head .blog_title {
	clear: both;
	font-size: 3.2rem;
	line-height: 1.4;
	margin: 3.125vw 0;
}
/*タグ
====================================*/
.blog_head .tag_entry {
	font-size: 1.2rem;
	margin-bottom: 3.75vw;
}
/*SNSシェアボタン
====================================*/
/*記事下*/
.sns_share_bottom {
	margin-bottom: 16.25vw;
}
/*本体*/
.share_btn_cont {
}
/*ul*/
.share_btn_cont .sb_list {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
}
/*li*/
.share_btn_cont .sb_box {
	display: block;
	width: auto;
	padding: 0 2.5vw;
	margin: 0 2.5vw 0 0;
	box-sizing: border-box;
	border-radius: 4px;
}
.share_btn_cont .sb_box:last-child {
	margin: 0;
}
/*a*/
.share_btn_cont .sb_link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0.625vw 0;
	color: #fff;
	line-height: 0.5;
}
/*アイコン*/
.share_btn_cont .sb_box .lab {
	font-size: 1.8rem;
	margin-right: 0.625vw;
}
/*テキスト*/
.share_btn_cont .sb_box .txt {
	font-size: 0.8rem;
}
/*facebook*/
.la-facebook-square:before {
	background-image: url(../img/ic_fb.webp);
}

.share_btn_cont .send_facebook {
	background-color: #3b5998;
}
/*twitter*/
.la-twitter:before {
	background-image: url(../img/ic_x.webp);
}
.share_btn_cont .send_twitter {
	background-color: #333;
}
/*LINE*/
.la-line:before {
	background-image: url(../img/ic_line.webp);
}
.share_btn_cont .send_line {
	background-color: #06c755;
}
/*Pocket*/
.la-get-pocket:before {
	background-image: url(../img/ic_pocket.webp);
}
.share_btn_cont .send_pocket {
	background-color: #d3505a;
}

.la-facebook-square:before,
.la-twitter:before,
.la-line:before,
.la-get-pocket:before {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 2.5vw;
	height: 2.5vw;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
本文
====================================*/
#blog_box {
	padding: 0 0 0 2.5vw;
	margin: 0 0 10vw;
	line-height: 1.8;
	overflow: hidden;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
  付属部分
====================================*/
.annexed_cont {
	padding: 0 0 0 2.5vw;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
著者情報
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#author_area {
	width: 100%;
	padding: 8vw 3.75vw 8vw;
	margin: 0 0 10vw;
	border-width: 1px;
	border-style: solid;
}
/*タイトル
====================================*/
#author_area .aa_title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	margin: 0 0 5vw;
}
#author_area .aa_title::before {
	content: "\f37e";
	font-family: "Ionicons";
	font-size: 2rem;
	margin: 0 3vw 0 0;
}

#author_area .entry {
	display: block;
	overflow: hidden;
}
/*左側
====================================*/
#author_area .wrap_l {
	float: left;
	width: 24vw;
	overflow: hidden;
	margin: 0 5vw 0 0.625vw;
}
/*画像*/
#author_area .img_box {
	position: relative;
	width: 100%;
}
#author_area .img_box::before {
	content: "";
	display: block;
	padding-top: 100%;
}
#author_area .img_box img {
	position: absolute;
	top: 0;
}
/*右側
====================================*/
/*著者名*/
#author_area .author_name {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	margin: 1.25vw 0 3vw;
}
/*テキスト*/
#author_area .author_txt {
	margin: 0 0 7.5vw;
}
#author_area .author_txt p {
	font-size: 1.6rem;
	line-height: 2;
}

/*その他
====================================*/
#author_area .other {
	display: block;
	justify-content: flex-end;
	width: 100%;
}
/*SNS*/
#author_area .user_sns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0 0 7.5vw;
}
#author_area li {
	width: 8.75vw;
	overflow: hidden;
	margin: 0 3.75vw 0 0;
}
#author_area li a {
	display: block;
}
/*この著者の記事一覧*/
#author_area .author_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80%;
	height: 10vw;
	margin: 0 auto;
	border-width: 0.16vw;
	border-style: solid;
}
#author_area .author_btn span {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
	line-height: 1;
}
#author_area .author_btn span::after {
	content: "\f125";
	font-family: "Ionicons";
	font-size: 1.4rem;
	margin: 0 0 0 8px;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
コメント
====================================*/
#comments_wrap {
	padding: 0 0 0 2.5vw;
	margin: 0 0 10vw;
}
/*コメントがあった場合のタイトル*/
#comments_wrap #comments {
	display: flex;
	align-items: center;
	font-size: 2rem;
	line-height: 1;
	padding: 0 0 2.5vw 2.5vw;
	margin: 0 0 3.75vw;
	border-bottom-width: 0.16vw;
	border-bottom-style: solid;
}
#comments_wrap #comments::before {
	content: "message";
	font-family: "Material Icons";
	font-size: 2rem;
	margin: 0 2.5vw 0 0;
}
/*ナビ*/
#comments_wrap .navigation {
	overflow: hidden;
	margin-bottom: 20px;
}
/*コメントリスト（複数人の場合）*/
#comments_wrap .commentlist {
	overflow: hidden;
	list-style: none;
	padding: 0 0 0 2.5vw;
}
/*li*/
#comments_wrap .commentlist > li {
	overflow: hidden;
	margin: 0 0 5vw;
	border-bottom-width: 0.16vw;
	border-bottom-style: dashed;
}
/*子*/
#comments_wrap .commentlist .children {
	list-style: none;
	padding: 0 0 0 3.75vw;
}
#comments_wrap .commentlist .children li {
	padding: 0 0 0 10px;
}
/*コメント欄*/
#comments_wrap .comment-meta {
	position: relative;
}
/*コメント投稿者*/
#comments_wrap .comment-author {
	display: flex;
	flex-wrap: wrap;
}
#comments_wrap .comment-author img {
	width: 10vw;
	height: 10vw;
	margin: 0 2.5vw 0 0;
}
#comments_wrap .comment_entry {
	position: relative;
	width: calc(100% - 12.5vw);
	padding-bottom: 3.75vw;
}
#comments_wrap .comment_entry.w-100 {
	width: 100%;
}
#comments_wrap .comment-author b,
#comments_wrap .comment-author span {
	font-size: 1.4rem;
}
/*日付*/
#comments_wrap .comment-metadata {
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 1rem;
	font-weight: normal;
	line-height: 1;
}
#comments_wrap .comment-awaiting-moderation {
	margin-bottom: 10px;
	text-align: right;
}
/*コメントの枠*/
#comments_wrap .comment-content {
	width: 100%;
	overflow: hidden;
	padding: 1.25vw 0;
	margin: 0 0 2.5vw;
	font-size: 1.4rem;
	line-height: 1.6;
}
/*返信ボタン*/
#comments_wrap .reply {
	display: flex;
	overflow: hidden;
	width: 100%;
	margin-bottom: 2.5vw;
}
#comments_wrap .reply a {
	font-size: 1.2rem;
	text-decoration: underline;
}

/*コメント*/
#comments_wrap .comment-respond {
	width: 100%;
	overflow: hidden;
	margin: 0 0 10vw;
}
/*エリアタイトル*/
#comments_wrap #reply-title {
	display: flex;
	align-items: center;
	font-size: 2rem;
	line-height: 1;
	padding: 0 0 2.5vw 2.5vw;
	margin: 0 0 3.75vw;
	border-bottom-width: 0.16vw;
	border-bottom-style: solid;
}
#comments_wrap #reply-title::before {
	content: "add_comment";
	font-family: "Material Icons";
	font-size: 2rem;
	margin: 0 2.5vw 0 0;
}
/*コメントフォーム*/
#comments_wrap .comment-form {
	width: 100%;
	height: auto;
	overflow: hidden;
	padding: 0 0 0 2.5vw;
}
/*テキスト*/
#comments_wrap .comment-notes,
#comments_wrap .logged-in-as {
	font-size: 1.6rem;
	line-height: 1.6;
	margin: 0 0 5vw;
}
/*必須*/
#comments_wrap .required {
	color: #ad0505;
}

/*入力欄ラベル*/
#comments_wrap .comment-form-author label,
#comments_wrap .comment-form-email label,
#comments_wrap .comment-form-url label,
#comments_wrap .comment-form-comment label {
	display: block;
	font-size: 1.4rem;
	margin: 0 0 2.5vw;
}
/*入力エリア*/
#comments_wrap .comment-form-author,
#comments_wrap .comment-form-email,
#comments_wrap .comment-form-url,
#comments_wrap .comment-form-comment {
	margin: 0 0 5vw;
}
/*Textarea*/
#comments_wrap .comment-form-comment textarea {
	width: 100%;
	height: 25vw;
	padding: 1.25vw;
	box-sizing: border-box;
	border-width: 0.16vw;
	border-style: solid;
	font-size: 1.4rem;
}
/*Input：名前、メール、サイト*/
#comments_wrap .comment-form-author input[type="text"],
#comments_wrap .comment-form-email input[type="email"],
#comments_wrap .comment-form-url input[type="url"] {
	width: 100%;
	height: 7.5vw;
	padding: 1.25vw;
	box-sizing: border-box;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border-width: 0.16vw;
	border-style: solid;
	font-size: 1.4rem;
}
/*送信ボタン*/
#comments_wrap .form-submit {
	text-align: center;
	padding: 10px 0px;
}
#comments_wrap .form-submit input[type="submit"] {
	width: 60%;
	height: 8.75vw;
	border: 0;
	cursor: pointer;
	font-size: 1.4rem;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

#comments_wrap .form-submit input:focus {
	border: none;
}

#comments_wrap .nocomments {
	display: none;
	padding: 20px 0;
	margin-bottom: 30px;
	border-top: 1px dotted rgba(0, 0, 0, 0.5);
	border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ページナビ（次の記事、前の記事）
====================================*/
#pn_pager {
	width: 100%;
	overflow: hidden;
	padding: 0 0 0 2.5vw;
	margin: 10vw auto;
}

#pn_pager .pre_p,
#pn_pager .next_p {
	width: 48%;
	font-size: 1.6rem;
	line-height: 1.4;
}
#pn_pager .pre_p {
	float: left;
	text-align: left;
}
#pn_pager .next_p {
	float: right;
	text-align: right;
}
/*前の記事*/
#pn_pager .txt_l {
	display: flex;
	align-items: center;
	font-size: 1.2rem;
	margin: 0 0 3.75vw;
}
#pn_pager .txt_l::before {
	content: "\f3d2";
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5vw;
	height: 5vw;
	margin: 0 2.5vw;
	color: #c6bfb6;
	font-family: "Ionicons";
	font-size: 2rem;
	border: 1px solid #c6bfb6;
}
/*次の記事*/
#pn_pager .txt_r {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 1.2rem;
	margin: 0 0 3.75vw;
}
#pn_pager .txt_r::after {
	content: "\f3d3";
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5vw;
	height: 5vw;
	margin: 0 2.5vw;
	color: #c6bfb6;
	font-family: "Ionicons";
	font-size: 2rem;
	border: 1px solid #c6bfb6;
}
/*画像とタイトル*/
#pn_pager .pn_entry {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}
/*画像*/
#pn_pager .pn_img {
	position: relative;
	width: 19vw;
	overflow: hidden;
}
#pn_pager .pn_img::before {
	content: "";
	display: block;
	padding-top: 67%;
}
#pn_pager .pn_img img {
	position: absolute;
	top: 0;
	left: 0;
}
/*記事タイトル*/
#pn_pager .pn_title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	width: calc(100% - 21vw);
	overflow: hidden;
	font-size: 1.4rem;
	line-height: 1.4;
	word-break: break-all;
	padding: 0.625vw 0 0 0;
	text-align: left;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
  関連記事
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.related_post_area {
	margin: 13.75vw 0 16.25vw;
}
/*エリアタイトル*/
.related_post_area .area_title {
	display: flex;
	align-items: center;
	font-size: 2rem;
	line-height: 1;
	padding: 0 0 2.5vw 2.5vw;
	margin: 0 0 5vw;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}
.related_post_area .area_title:before {
	content: "\e8f0";
	font-family: "Material Icons";
	font-size: 2rem;
	font-weight: normal;
	margin: 0 2.5vw 0 0;
}
/*ul*/
.related_post_cont {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style: none;
}
/*li*/
.related_post_cont li {
	width: 49%;
	overflow: hidden;
	padding: 0 2.5vw;
	margin: 0 0 6.25vw 0;
}

/*aタグ*/
.related_post_cont .box a {
	display: block;
}
/*画像*/
.related_post_cont .img_frame {
	position: relative;
}
.related_post_cont .img_entry {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	margin: 0;
}
.related_post_cont .img_entry::before {
	content: "";
	display: block;
	padding-top: 67%;
}
.related_post_cont .img_entry img {
	position: absolute;
	top: 0;
}
/*タイトル*/
.related_post_cont .title_entry {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.5;
	margin: 2.5vw 0 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	word-break: break-all;
	overflow: hidden;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ARCHIVE
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#archive_wrap {
	width: 100%;
	overflow: hidden;
}
#archive_area {
	width: 100%;
}
#archive_cont {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0 0 96px;
}
/*コンテンツ*/
#archive_cont .box {
	position: relative;
	width: 46%;
	overflow: hidden;
	padding: 0 0 0 2.5vw;
	margin: 0 0 10vw 0;
}
/*aタグ*/
#archive_cont .box a {
	display: block;
}
#archive_cont .box a:hover {
	opacity: 0.8;
}
/*画像*/
#archive_cont .img_frame {
	position: relative;
}
#archive_cont .img_entry {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	margin: 0;
}
#archive_cont .img_entry::before {
	content: "";
	display: block;
	padding-top: 67%;
}
#archive_cont .img_entry img {
	position: absolute;
	top: 0;
}
/*日付*/
#archive_cont .day_entry {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	height: auto;
	padding: 1vw 2vw;
	font-size: 1.2rem;
}
/*タイトル*/
#archive_cont .title_entry {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.5;
	margin: 2.5vw 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	word-break: break-all;
	overflow: hidden;
}
/*抜粋or本文*/
#archive_cont .txt_entry {
	font-size: 1.4rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
/*カテゴリー*/
#archive_cont .cat_entry {
	position: absolute;
	top: 2.5vw;
	left: 0;
	list-style: none;
	padding: 0;
	margin: 0;
}
#archive_cont .cat_entry .cat_box {
	display: none;
}
#archive_cont .cat_entry .cat_box:first-child {
	display: flex;
	align-items: center;
	width: auto;
	height: auto;
	padding: 1vw 2.5vw;
	font-size: 1rem;
	line-height: 1;
}
/*////////////////////////////////////*/

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
検索
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#archive_cont .search_box {
	width: 100%;
	margin-bottom: 6.25vw;
}
#archive_cont .search_box .post_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
/*画像
===============================*/
#archive_cont .search_box .img_frame {
	width: 20vw;
}

/*entry
===============================*/
#archive_cont .search_box .entry {
	width: calc(100% - 20vw - 3.75vw);
}
/*タイトル*/
#archive_cont .search_box .title_entry {
	margin: 0 0 2.5vw;
	line-height: 1;
	-webkit-line-clamp: 1;
}
/*テキスト*/
#archive_cont .txt_entry {
	-webkit-line-clamp: 1;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ページャー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.page_nav_box {
	margin: 0 0 12.5vw;
}
.page_nav_box .wp-pagenavi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	text-align: center;
	margin: 0 0 3.75vw;
}
.page_nav_box .wp-pagenavi a,
.page_nav_box .wp-pagenavi span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6.25vw;
	height: 6.25vw;
	padding: 0;
	margin: 2.5vw;
	font-size: 1.4rem;
	font-weight: bold;
	border: 0.16vw solid;
}
.page_nav_box .kensu {
	font-size: 1.4rem;
	line-height: 1;
	text-align: center;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

/*WTT*/
@media screen and (min-width: 641px) and (max-width: 959px) {
	/*ここから*/
	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
投稿共通
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.post_style {
		margin: 110px 0 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
SINGLE
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ページタイトル
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.post_type_head {
		width: 100%;
		height: 50vw;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}
	.pth_wrap {
		width: 100%;
		height: 100%;
	}
	.title_box {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 100%;
		height: 100%;
		padding: 0 6.25vw 2.5vw;
		text-align: center;
	}
	.title_box .title {
		font-size: 3.6rem;
	}
	.title_box .sub_title {
		font-size: 1rem;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
記事
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#blog_wrap {
		width: 100%;
		overflow: hidden;
	}
	#blog_area {
		width: 100%;
		overflow: hidden;
	}
	#blog_cont {
	}

	/*ブログヘッダー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.blog_head {
		padding: 0 0 0 2.5vw;
		margin-bottom: 7.5vw;
	}
	/*カテゴリー
====================================*/
	.blog_head .cat_entry {
		position: relative;
		left: -2.5vw;
		float: left;
		display: flex;
		flex-wrap: wrap;
	}
	.blog_head .cat_entry .cat_box {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0 2.5vw;
		height: 32px;
		margin: 0 2.5vw 2.5vw 0;
		font-size: 1.6rem;
	}
	/*公開日・更新日
====================================*/
	.blog_head .day_entry {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 100%;
		font-size: 1.2rem;
		padding: 0 0 0;
	}
	/*時計アイコン*/
	.blog_head .day_entry span::before {
		top: 0.4vw;
		font-size: 1.4rem;
		margin: 0 0.625vw 0 0;
	}
	/*記事タイトル
====================================*/
	.blog_head .blog_title {
		clear: both;
		font-size: 3.2rem;
		line-height: 1.8;
		margin: 2.5vw 0;
	}
	/*タグ
====================================*/
	.blog_head .tag_entry {
		font-size: 1.2rem;
		margin-bottom: 3.75vw;
	}

	/*SNSシェアボタン
====================================*/
	/*記事下*/
	.sns_share_bottom {
		margin-bottom: 16.25vw;
	}
	/*本体*/
	.share_btn_cont .sb_box {
		padding: 0 8px;
	}
	.share_btn_cont .sb_link {
		padding: 0.625vw 0;
	}
	/*アイコン*/
	.share_btn_cont .sb_box .lab {
		font-size: 1.8rem;
		margin-right: 4px;
	}

	.la-facebook-square:before,
	.la-twitter:before,
	.la-line:before,
	.la-get-pocket:before {
		width: 2.5vw;
		height: 2.5vw;
	}
	/*テキスト*/
	.share_btn_cont .sb_box .txt {
		font-size: 1rem;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
本文
====================================*/
	#blog_box {
		padding: 0 0 0 2.5vw;
		margin: 0 0 10vw;
		line-height: 1.7;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
  付属部分
====================================*/
	.annexed_cont {
		padding: 0 0 0 2.5vw;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
著者情報
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#author_area {
		margin: 0 0 64px;
		border-width: 1px;
	}
	/*タイトル
====================================*/
	#author_area .aa_title {
		margin: 0 0 3.75vw;
	}
	#author_area .aa_title::before {
		font-size: 2rem;
		margin: 0 2.5vw 0 0;
	}
	#author_area .entry {
		display: block;
		overflow: hidden;
	}
	/*左側
====================================*/
	#author_area .wrap_l {
		float: left;
		width: 24vw;
		overflow: hidden;
		margin: 0 5vw 0 0.625vw;
	}
	/*画像*/
	#author_area .img_box {
		position: relative;
		width: 100%;
	}
	#author_area .img_box::before {
		content: "";
		display: block;
		padding-top: 100%;
	}
	#author_area .img_box img {
		position: absolute;
		top: 0;
	}

	/*右側
====================================*/
	#author_area .wrap_r {
		height: auto;
		overflow: hidden;
	}
	/*著者名*/
	#author_area .author_name {
		font-size: 2rem;
		font-weight: bold;
		margin: 2vw 0 3vw;
	}
	/*テキスト*/
	#author_area .author_txt {
		margin: 0 0 7.5vw;
	}
	#author_area .author_txt p {
		font-size: 1.6rem;
	}

	/*その他
====================================*/
	#author_area .other {
		display: flex;
		justify-content: flex-end;
		width: 100%;
	}
	/*SNS*/
	#author_area .user_sns {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		width: auto;
		list-style: none;
		padding: 0;
		margin: 0 5vw 0 auto;
	}
	#author_area li {
		width: 3.33vw;
		overflow: hidden;
		margin: 0 3.75vw 0 0;
	}
	#author_area li a {
		display: block;
	}
	/*この著者の記事一覧*/
	#author_area .author_btn {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 30vw;
		height: 5vw;
		margin: 0;
		border-width: 0.16vw;
		border-style: solid;
	}
	#author_area .author_btn span {
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 1.4rem;
		line-height: 1;
	}
	#author_area .author_btn span::after {
		content: "\f125";
		font-family: "Ionicons";
		font-size: 1.4rem;
		margin: 0 0 0 8px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
コメント
====================================*/
	#comments_wrap {
		padding: 0 0 0 2.5vw;
		margin: 0 0 10vw;
	}
	/*コメントがあった場合のタイトル*/
	#comments_wrap #comments {
		display: flex;
		align-items: center;
		font-size: 2rem;
		line-height: 1;
		padding: 0 0 2.5vw 2.5vw;
		margin: 0 0 3.75vw;
		border-bottom-width: 0.16vw;
		border-bottom-style: solid;
	}
	#comments_wrap #comments::before {
		content: "message";
		font-family: "Material Icons";
		font-size: 2rem;
		margin: 0 2.5vw 0 0;
	}
	/*ナビ*/
	#comments_wrap .navigation {
		overflow: hidden;
		margin-bottom: 20px;
	}
	/*コメントリスト（複数人の場合）*/
	#comments_wrap .commentlist {
		overflow: hidden;
		list-style: none;
		padding: 0 0 0 2.5vw;
	}
	/*li*/
	#comments_wrap .commentlist > li {
		overflow: hidden;
		margin: 0 0 5vw;
		border-bottom-width: 0.16vw;
		border-bottom-style: dashed;
	}
	/*子*/
	#comments_wrap .commentlist .children {
		list-style: none;
		padding: 0 0 0 3.75vw;
	}
	#comments_wrap .commentlist .children li {
		padding: 0 0 0 10px;
	}
	/*コメント欄*/
	#comments_wrap .comment-meta {
		position: relative;
	}
	/*コメント投稿者*/
	#comments_wrap .comment-author {
		display: flex;
	}
	#comments_wrap .comment-author img {
		width: 10vw;
		height: 10vw;
		margin: 0 2.5vw 0 0;
	}
	#comments_wrap .comment_entry {
		width: calc(100% - 12.5vw);
		padding-bottom: 3.75vw;
	}
	#comments_wrap .comment_entry.w-100 {
		width: 100%;
	}
	#comments_wrap .comment-author b,
	#comments_wrap .comment-author span {
		font-size: 1.4rem;
	}
	/*日付*/
	#comments_wrap .comment-metadata {
		font-size: 1rem;
	}
	#comments_wrap .comment-awaiting-moderation {
		margin-bottom: 10px;
		text-align: right;
	}
	/*コメントの枠*/
	#comments_wrap .comment-content {
		width: 100%;
		overflow: hidden;
		padding: 1.25vw 0;
		margin: 0 0 2.5vw;
		font-size: 1.4rem;
		line-height: 1.6;
	}
	/*返信ボタン*/
	#comments_wrap .reply {
		display: flex;
		overflow: hidden;
		width: 100%;
		margin-bottom: 2.5vw;
	}
	#comments_wrap .reply a {
		font-size: 1.2rem;
		text-decoration: underline;
	}

	/*コメント*/
	#comments_wrap .comment-respond {
		width: 100%;
		overflow: hidden;
		margin: 0 0 10vw;
	}
	/*エリアタイトル*/
	#comments_wrap #reply-title {
		display: flex;
		align-items: center;
		font-size: 2rem;
		line-height: 1;
		padding: 0 0 2.5vw 2.5vw;
		margin: 0 0 3.75vw;
		border-bottom-width: 0.16vw;
		border-bottom-style: solid;
	}
	#comments_wrap #reply-title::before {
		content: "add_comment";
		font-family: "Material Icons";
		font-size: 2rem;
		margin: 0 2.5vw 0 0;
	}
	/*コメントフォーム*/
	#comments_wrap .comment-form {
		width: 100%;
		height: auto;
		overflow: hidden;
		padding: 0 0 0 2.5vw;
	}
	/*テキスト*/
	#comments_wrap .comment-notes,
	#comments_wrap .logged-in-as {
		font-size: 1.6rem;
		line-height: 1.6;
		margin: 0 0 5vw;
	}
	/*必須*/
	#comments_wrap .required {
		color: #ad0505;
	}

	/*入力欄ラベル*/
	#comments_wrap .comment-form-author label,
	#comments_wrap .comment-form-email label,
	#comments_wrap .comment-form-url label,
	#comments_wrap .comment-form-comment label {
		display: block;
		font-size: 1.4rem;
		margin: 0 0 2.5vw;
	}
	/*入力エリア*/
	#comments_wrap .comment-form-author,
	#comments_wrap .comment-form-email,
	#comments_wrap .comment-form-url,
	#comments_wrap .comment-form-comment {
		margin: 0 0 5vw;
	}
	/*Textarea*/
	#comments_wrap .comment-form-comment textarea {
		width: 100%;
		height: 25vw;
		padding: 1.25vw;
		box-sizing: border-box;
		border-width: 0.16vw;
		border-style: solid;
		font-size: 1.4rem;
	}
	/*Input：名前、メール、サイト*/
	#comments_wrap .comment-form-author input[type="text"],
	#comments_wrap .comment-form-email input[type="email"],
	#comments_wrap .comment-form-url input[type="url"] {
		width: 100%;
		height: 7.5vw;
		padding: 1.25vw;
		box-sizing: border-box;
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		border-width: 0.16vw;
		border-style: solid;
		font-size: 1.4rem;
	}
	/*送信ボタン*/
	#comments_wrap .form-submit {
		text-align: center;
		padding: 10px 0px;
	}
	#comments_wrap .form-submit input[type="submit"] {
		width: 60%;
		height: 8.75vw;
		border: 0;
		cursor: pointer;
		font-size: 1.4rem;
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
	}

	#comments_wrap .form-submit input:focus {
		border: none;
	}

	#comments_wrap .nocomments {
		display: none;
		padding: 20px 0;
		margin-bottom: 30px;
		border-top: 1px dotted rgba(0, 0, 0, 0.5);
		border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ページナビ（次の記事、前の記事）
====================================*/
	#pn_pager {
		width: 100%;
		overflow: hidden;
		padding: 0 0 0 2.5vw;
		margin: 64px auto;
	}
	#pn_pager .pre_p,
	#pn_pager .next_p {
		width: 48%;
		font-size: 1.6rem;
		line-height: 1.4;
	}
	#pn_pager .pre_p {
		float: left;
		text-align: left;
	}
	#pn_pager .next_p {
		float: right;
		text-align: right;
	}
	/*前の記事*/
	#pn_pager .txt_l {
		display: flex;
		align-items: center;
		font-size: 1.2rem;
		margin: 0 0 3.75vw;
	}
	#pn_pager .txt_l::before {
		content: "\f3d2";
		display: flex;
		justify-content: center;
		align-items: center;
		width: 5vw;
		height: 5vw;
		margin: 0 2.5vw;
		color: #c6bfb6;
		font-family: "Ionicons";
		font-size: 2rem;
		border: 1px solid #c6bfb6;
	}
	/*次の記事*/
	#pn_pager .txt_r {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		font-size: 1.2rem;
		margin: 0 0 3.75vw;
	}
	#pn_pager .txt_r::after {
		content: "\f3d3";
		display: flex;
		justify-content: center;
		align-items: center;
		width: 5vw;
		height: 5vw;
		margin: 0 2.5vw;
		color: #c6bfb6;
		font-family: "Ionicons";
		font-size: 2rem;
		border: 1px solid #c6bfb6;
	}
	/*画像とタイトル*/
	#pn_pager .pn_entry {
		width: 100%;
	}
	/*画像*/
	#pn_pager .pn_img {
		position: relative;
		width: 19vw;
		overflow: hidden;
	}
	#pn_pager .pn_img::before {
		content: "";
		display: block;
		padding-top: 67%;
	}
	#pn_pager .pn_img img {
		position: absolute;
		top: 0;
		left: 0;
	}
	/*記事タイトル*/
	#pn_pager .pn_title {
		width: calc(100% - 21vw);
		font-size: 1.4rem;
		line-height: 1.4;
		padding: 0.625vw 0 0 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
  関連記事
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.related_post_area {
		margin: 88px 0 104px;
	}
	/*エリアタイトル*/
	.related_post_area .area_title {
		font-size: 2rem;
		padding: 0 0 16px 16px;
		margin: 0 0 32px;
	}
	.related_post_area .area_title:before {
		font-size: 2.6rem;
		margin: 0 16px 0 0;
	}
	/*ul*/
	.related_post_cont {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: flex-start;
	}
	/*li*/
	.related_post_cont li {
		width: calc(100% / 3);
		overflow: hidden;
		padding: 0 16px;
		margin: 0 0 40px 0;
	}
	/*タイトル*/
	.related_post_cont .title_entry {
		font-size: 1.6rem;
		margin: 16px 0 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ARCHIVE
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#archive_wrap {
		width: 100%;
		overflow: hidden;
	}
	#archive_area {
		width: 100%;
	}
	#archive_cont {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 100%;
		list-style: none;
		padding: 0;
		margin: 0 0 96px;
	}
	/*コンテンツ*/
	#archive_cont .box {
		position: relative;
		width: 46%;
		overflow: hidden;
		padding: 0 0 0 2.5vw;
		margin: 0 0 10vw 0;
	}
	/*aタグ*/
	#archive_cont .box a {
		display: block;
	}
	/*画像*/
	#archive_cont .img_frame {
		position: relative;
	}
	#archive_cont .img_entry {
		position: relative;
		width: 100%;
		overflow: hidden;
		margin: 0;
	}
	#archive_cont .img_entry::before {
		content: "";
		display: block;
		padding-top: 67%;
	}
	#archive_cont .img_entry img {
		position: absolute;
		top: 0;
	}
	/*日付*/
	#archive_cont .day_entry {
		position: absolute;
		bottom: 0;
		right: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: auto;
		height: auto;
		padding: 1vw 2vw;
		font-size: 1.4rem;
	}
	/*タイトル*/
	#archive_cont .title_entry {
		font-size: 1.6rem;
		font-weight: bold;
		line-height: 1.5;
		margin: 2.5vw 0;
		overflow: hidden;
	}
	/*抜粋or本文*/
	#archive_cont .txt_entry {
		font-size: 1.4rem;
		line-height: 1.5;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}
	/*カテゴリー*/
	#archive_cont .cat_entry {
		position: absolute;
		top: 2.5vw;
		left: 0;
		list-style: none;
		padding: 0;
		margin: 0;
	}
	#archive_cont .cat_entry .cat_box {
		display: none;
	}
	#archive_cont .cat_entry .cat_box:first-child {
		display: flex;
		align-items: center;
		width: auto;
		height: auto;
		padding: 1vw 2.5vw;
		font-size: 1.2rem;
		line-height: 1;
	}
	/*////////////////////////////////////*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ページャー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.page_nav_box {
		margin: 0 0 80px;
	}
	.page_nav_box .wp-pagenavi {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		text-align: center;
		margin: 0 0 8px;
	}
	.page_nav_box .wp-pagenavi a,
	.page_nav_box .wp-pagenavi span {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 48px;
		height: 48px;
		padding: 0;
		margin: 16px;
		font-size: 1.6rem;
		font-weight: bold;
		border: 1px solid;
	}
	/*件数*/
	.page_nav_box .kensu {
		font-size: 1.4rem;
		line-height: 1;
		text-align: center;
	}
	/*////////////////////////////////////*/

	/*ここまで*/
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

/*WT*/
@media screen and (min-width: 960px) and (max-width: 1279px) {
	/*ここから*/
	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
投稿共通
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.post_style {
		margin: 110px 0 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
SINGLE
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ページタイトル
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.post_type_head {
		width: 100%;
		height: 400px;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}
	.title_box {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 40%;
		height: 100%;
		padding: 0 40px 20px;
		background: rgba(255, 255, 255, 0.72);
	}
	.title_box .title {
		font-size: 5.6rem;
	}
	.title_box .sub_title {
		font-size: 1.6rem;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
記事
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#blog_wrap {
		width: 100%;
		overflow: hidden;
	}
	#blog_area {
		width: 70%;
		overflow: hidden;
	}
	#blog_cont {
	}

	/*ブログヘッダー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.blog_head {
		padding: 0 0 0 16px;
		margin-bottom: 48px;
	}
	/*カテゴリー
====================================*/
	.blog_head .cat_entry {
		position: relative;
		left: -16px;
		float: left;
		display: flex;
		flex-wrap: wrap;
	}
	.blog_head .cat_entry .cat_box {
		padding: 0 16px;
		height: 32px;
		margin: 0 16px 16px 0;
		font-size: 1.6rem;
	}
	/*公開日・更新日
====================================*/
	.blog_head .day_entry {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 100%;
		font-size: 1.2rem;
		padding: 0;
	}
	/*時計アイコン*/
	.blog_head .day_entry span::before {
		top: 1px;
		margin: 0 8px 0 0;
	}
	/*記事タイトル
====================================*/
	.blog_head .blog_title {
		clear: both;
		font-size: 3.2rem;
		line-height: 1.8;
		margin: 16px 0;
	}
	/*タグ
====================================*/
	.blog_head .tag_entry {
		font-size: 1.2rem;
		margin-bottom: 24px;
	}
	/*SNSシェアボタン
====================================*/
	/*記事下*/
	.sns_share_bottom {
		margin-bottom: 104px;
	}
	/*本体*/
	.share_btn_cont .sb_box {
		padding: 0 8px;
		margin: 0 16px 0 0;
	}
	.share_btn_cont .sb_link {
		padding: 3px 0 3px;
	}
	/*アイコン*/
	.share_btn_cont .sb_box .lab {
		margin-right: 4px;
	}
	/*テキスト*/
	.share_btn_cont .sb_box .txt {
		font-size: 1.2rem;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
本文
====================================*/
	#blog_box {
		padding: 0 0 0 16px;
		margin: 0 0 80px;
		line-height: 1.7;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
  付属部分
====================================*/
	.annexed_cont {
		padding: 0 0 0 16px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
著者情報
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#author_area {
		padding: 32px;
		margin: 0 0 64px;
		border-width: 1px;
	}
	/*タイトル
====================================*/
	#author_area .aa_title {
		font-size: 2rem;
		margin: 0 0 24px;
	}
	#author_area .aa_title::before {
		font-size: 2rem;
		margin: 0 16px 0 0;
	}
	/*左側
====================================*/
	#author_area .wrap_l {
		width: 168px;
		height: 168px;
		margin: 0 40px 0 4px;
	}
	/*画像*/
	#author_area .img_box {
		position: relative;
		width: 100%;
	}
	#author_area .img_box::before {
		content: "";
		display: block;
		padding-top: 100%;
	}
	#author_area .img_box img {
		position: absolute;
		top: 0;
	}

	/*右側
====================================*/
	/*著者名*/
	#author_area .author_name {
		font-size: 20px;
		font-weight: bold;
		margin: 12px 0 20px;
	}
	/*テキスト*/
	#author_area .author_txt {
		margin: 0 0 48px;
	}
	#author_area .author_txt p {
		font-size: 1.6rem;
	}

	/*その他
====================================*/
	#author_area .other {
		display: flex;
		justify-content: flex-end;
		width: 100%;
		margin-top: 8px;
	}
	/*SNS*/
	#author_area .user_sns {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		width: auto;
		list-style: none;
		padding: 0;
		margin: 0 4px 0 0;
	}
	#author_area li {
		width: 24px;
		height: 24px;
		overflow: hidden;
		margin: 0 24px 0 0;
	}
	#author_area li a {
		display: block;
	}

	/*この著者の記事一覧*/
	#author_area .author_btn {
		width: 172px;
		height: 40px;
		margin: 0;
		border-width: 1px;
	}
	#author_area .author_btn span {
		font-size: 1.4rem;
	}
	#author_area .author_btn span::after {
		font-size: 1.4rem;
		margin: 0 0 0 8px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
コメント
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#comments_wrap {
		padding: 0 0 0 2.5vw;
		margin: 0 0 64px;
	}
	/*コメントがあった場合のタイトル*/
	#comments_wrap #comments {
		display: flex;
		align-items: center;
		font-size: 2rem;
		line-height: 1;
		padding: 0 0 16px 16px;
		margin: 0 0 24px;
		border-bottom-width: 1px;
		border-bottom-style: solid;
	}
	#comments_wrap #comments::before {
		content: "insert_comment";
		font-family: "Material Icons";
		font-size: 2.6rem;
		margin: 0 16px 0 0;
	}
	/*ナビ*/
	#comments_wrap .navigation {
		overflow: hidden;
		margin-bottom: 20px;
	}
	/*コメントリスト（複数人の場合）*/
	#comments_wrap .commentlist {
		overflow: hidden;
		list-style: none;
		padding: 0 0 0 16px;
	}
	/*li*/
	#comments_wrap .commentlist > li {
		overflow: hidden;
		margin: 0 0 32px;
		border-bottom-width: 1px;
		border-bottom-style: dashed;
	}
	/*子*/
	#comments_wrap .commentlist .children {
		list-style: none;
		padding: 0 0 0 40px;
	}
	#comments_wrap .commentlist .children li {
		padding: 0 0 0 10px;
	}
	/*コメント欄*/
	#comments_wrap .comment-meta {
		position: relative;
	}
	/*コメント投稿者*/
	#comments_wrap .comment-author {
		display: flex;
	}
	#comments_wrap .comment-author img {
		width: 72px;
		height: 72px;
		margin: 0 16px 0 0;
	}
	#comments_wrap .comment_entry {
		width: calc(100% - 88px);
		padding-bottom: 24px;
	}
	#comments_wrap .comment_entry.w-100 {
		width: 100%;
	}
	#comments_wrap .comment-author b,
	#comments_wrap .comment-author span {
		font-size: 1.6rem;
	}
	/*日付*/
	#comments_wrap .comment-metadata {
		font-size: 1.4rem;
	}
	#comments_wrap .comment-awaiting-moderation {
		margin-bottom: 10px;
		text-align: right;
	}
	/*コメントの枠*/
	#comments_wrap .comment-content {
		width: 100%;
		overflow: hidden;
		padding: 8px 0;
		margin: 0 0 16px;
		font-size: 1.6rem;
		line-height: 1.6;
	}
	/*返信ボタン*/
	#comments_wrap .reply {
		display: flex;
		overflow: hidden;
		width: 100%;
		margin-bottom: 16px;
	}
	#comments_wrap .reply a {
		font-size: 1.6rem;
		text-decoration: underline;
	}

	/*コメント*/
	#comments_wrap .comment-respond {
		width: 100%;
		overflow: hidden;
		margin: 0 0 64px;
	}
	/*エリアタイトル*/
	#comments_wrap #reply-title {
		display: flex;
		align-items: center;
		font-size: 2rem;
		line-height: 1;
		padding: 0 0 16px 16px;
		margin: 0 0 24px;
		border-bottom-width: 1px;
		border-bottom-style: solid;
	}
	#comments_wrap #reply-title::before {
		content: "add_comment";
		font-family: "Material Icons";
		font-size: 2.6rem;
		margin: 0 16px 0 0;
	}
	/*コメントフォーム*/
	#comments_wrap .comment-form {
		width: 100%;
		height: auto;
		overflow: hidden;
		padding: 0 0 0 16px;
	}
	/*テキスト*/
	#comments_wrap .comment-notes,
	#comments_wrap .logged-in-as {
		font-size: 1.6rem;
		line-height: 1.6;
		margin: 0 0 32px;
	}
	/*必須*/
	#comments_wrap .required {
		color: #ad0505;
	}

	/*入力欄ラベル*/
	#comments_wrap .comment-form-author label,
	#comments_wrap .comment-form-email label,
	#comments_wrap .comment-form-url label,
	#comments_wrap .comment-form-comment label {
		display: block;
		font-size: 1.4rem;
		margin: 0 0 16px;
	}
	/*入力エリア*/
	#comments_wrap .comment-form-author,
	#comments_wrap .comment-form-email,
	#comments_wrap .comment-form-url,
	#comments_wrap .comment-form-comment {
		margin: 0 0 32px;
	}
	/*Textarea*/
	#comments_wrap .comment-form-comment textarea {
		width: 100%;
		height: 120px;
		padding: 4px;
		box-sizing: border-box;
		border-width: 1px;
		border-style: solid;
		font-size: 1.4rem;
	}
	/*Input：名前、メール、サイト*/
	#comments_wrap .comment-form-author input[type="text"],
	#comments_wrap .comment-form-email input[type="email"],
	#comments_wrap .comment-form-url input[type="url"] {
		width: 100%;
		height: 40px;
		padding: 4px;
		box-sizing: border-box;
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		border-width: 1px;
		border-style: solid;
		font-size: 1.4rem;
	}
	/*送信ボタン*/
	#comments_wrap .form-submit {
		text-align: center;
		padding: 10px 0px;
	}
	#comments_wrap .form-submit input[type="submit"] {
		width: 60%;
		height: 56px;
		border: 0;
		cursor: pointer;
		font-size: 1.4rem;
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
	}

	#comments_wrap .form-submit input:focus {
		border: none;
	}
	#comments_wrap .nocomments {
		display: none;
		padding: 20px 0;
		margin-bottom: 30px;
		border-top: 1px dotted rgba(0, 0, 0, 0.5);
		border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ページナビ（次の記事、前の記事）
====================================*/
	#pn_pager {
		width: 100%;
		overflow: hidden;
		padding: 0 0 0 2.5vw;
		margin: 64px auto;
	}
	#pn_pager .pre_p,
	#pn_pager .next_p {
		width: 48%;
		font-size: 1.6rem;
		line-height: 1.4;
	}
	#pn_pager .pre_p {
		float: left;
		text-align: left;
	}
	#pn_pager .next_p {
		float: right;
		text-align: right;
	}
	/*前の記事*/
	#pn_pager .txt_l {
		display: flex;
		align-items: center;
		font-size: 1.2rem;
		margin: 0 0 24px;
	}
	#pn_pager .txt_l::before {
		content: "\f3d2";
		display: flex;
		justify-content: center;
		align-items: center;
		width: 32px;
		height: 32px;
		margin: 0 16px;
		color: #c6bfb6;
		font-family: "Ionicons";
		font-size: 2rem;
		border: 1px solid #c6bfb6;
	}
	/*次の記事*/
	#pn_pager .txt_r {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		font-size: 1.2rem;
		margin: 0 0 24px;
	}
	#pn_pager .txt_r::after {
		content: "\f3d3";
		display: flex;
		justify-content: center;
		align-items: center;
		width: 32px;
		height: 32px;
		margin: 0 16px;
		color: #c6bfb6;
		font-family: "Ionicons";
		font-size: 2rem;
		border: 1px solid #c6bfb6;
	}
	/*画像とタイトル*/
	#pn_pager .pn_entry {
		width: 100%;
	}
	/*画像*/
	#pn_pager .pn_img {
		position: relative;
		width: 15vw;
		overflow: hidden;
	}
	#pn_pager .pn_img::before {
		content: "";
		display: block;
		padding-top: 67%;
	}
	#pn_pager .pn_img img {
		position: absolute;
		top: 0;
		left: 0;
	}
	/*記事タイトル*/
	#pn_pager .pn_title {
		width: calc(100% - 17vw);
		font-size: 1.4rem;
		line-height: 1.4;
		padding: 0.625vw 0 0 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
  関連記事
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.related_post_area {
		margin: 88px 0 104px;
	}
	/*エリアタイトル*/
	.related_post_area .area_title {
		font-size: 2rem;
		padding: 0 0 16px 16px;
		margin: 0 0 32px;
	}
	.related_post_area .area_title:before {
		font-size: 2.6rem;
		margin: 0 16px 0 0;
	}
	/*ul*/
	.related_post_cont {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: flex-start;
	}
	/*li*/
	.related_post_cont li {
		width: calc(100% / 3);
		overflow: hidden;
		padding: 0 16px;
		margin: 0 0 40px 0;
	}
	/*タイトル*/
	.related_post_cont .title_entry {
		font-size: 1.6rem;
		margin: 16px 0 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ARCHIVE
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#archive_wrap {
	}
	#archive_area {
		width: 70%;
	}
	/*ul
====================================*/
	#archive_cont {
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
		width: 100%;
		list-style: none;
		padding: 0;
		margin: 0 0 96px;
	}
	/*サイドバー有り*/
	#archive_cont.on_side {
		justify-content: space-between;
	}
	/*サイドバー無し*/
	#archive_cont.no_side {
		justify-content: flex-start;
	}
	/*li コンテンツ
====================================*/
	/*サイドバー有り*/
	#archive_cont .box {
		position: relative;
		width: 48%;
		overflow: hidden;
		padding: 0 0 0 16px;
		margin: 0 0 64px 0;
	}
	/*サイドバー無し*/
	#archive_cont.no_side .box {
		width: 32%;
		margin: 0 2% 64px 0;
	}
	#archive_cont.no_side .box:nth-child(3n) {
		margin: 0 0 64px 0;
	}
	/*画像
====================================*/
	#archive_cont .img_entry {
		position: relative;
		width: 100%;
		overflow: hidden;
		margin: 0;
	}
	#archive_cont .img_entry::before {
		content: "";
		display: block;
		padding-top: 67%;
	}
	#archive_cont .img_entry img {
		position: absolute;
		top: 0;
	}
	/*日付*/
	#archive_cont .day_entry {
		position: absolute;
		bottom: 0;
		right: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: auto;
		height: auto;
		padding: 4px 12px;
		font-size: 1.4rem;
	}
	/*タイトル*/
	#archive_cont .title_entry {
		font-size: 1.6rem;
		font-weight: bold;
		line-height: 1.5;
		margin: 16px 0;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}
	/*抜粋or本文*/
	#archive_cont .txt_entry {
		font-size: 1.4rem;
		line-height: 1.5;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}
	/*カテゴリー*/
	#archive_cont .cat_entry {
		position: absolute;
		top: 18px;
		left: 0;
		list-style: none;
		padding: 0;
		margin: 0;
	}
	#archive_cont .cat_entry .cat_box {
		display: none;
	}
	#archive_cont .cat_entry .cat_box:first-child {
		display: flex;
		align-items: center;
		width: auto;
		height: 32px;
		padding: 0 16px;
		font-size: 1.6rem;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
検索
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#archive_cont .search_box {
		margin-bottom: 40px;
	}
	#archive_cont .search_box .post_head {
		align-items: center;
	}
	/*画像
===============================*/
	#archive_cont .search_box .img_frame {
		width: 128px;
	}

	/*entry
===============================*/
	#archive_cont .search_box .entry {
		width: calc(100% - 128px - 24px);
	}
	/*タイトル*/
	#archive_cont .search_box .title_entry {
		margin: 0 0 16px;
		line-height: 1;
		-webkit-line-clamp: 1;
	}
	/*テキスト*/
	#archive_cont .txt_entry {
		-webkit-line-clamp: 2;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ページャー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.page_nav_box {
		margin: 0 0 80px;
	}
	.page_nav_box .wp-pagenavi {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		text-align: center;
		margin: 0 0 24px;
	}
	.page_nav_box .wp-pagenavi a,
	.page_nav_box .wp-pagenavi span {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 32px;
		height: 32px;
		padding: 0;
		margin: 8px;
		font-size: 1.4rem;
		font-weight: bold;
		border: 1px solid;
	}
	.page_nav_box .kensu {
		font-size: 1.4rem;
		line-height: 1;
		text-align: center;
	}

	/*ここまで*/
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

/*WPC*/
@media only screen and (min-width: 1280px) {
	/*ここから*/
	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
投稿共通
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.post_style {
		margin: 110px 0 0;
	}
	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ページタイトル
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.post_type_head {
		width: 100%;
		height: 400px;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}
	.title_box {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 40%;
		height: 100%;
		padding: 0 40px 20px calc((100% - 1280px) / 2);
		background: rgba(255, 255, 255, 0.72);
	}
	.title_box .title {
		font-size: 5.6rem;
	}
	.title_box .sub_title {
		font-size: 1.6rem;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
パスワード保護
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
記事
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#blog_wrap {
		width: 100%;
		overflow: hidden;
	}
	#blog_area {
		width: 832px;
		overflow: hidden;
	}
	#blog_cont {
	}

	/*ブログヘッダー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.blog_head {
		padding: 0 0 0 16px;
		margin-bottom: 48px;
	}

	/*カテゴリと公開日・更新日
====================================*/
	.cat_date_wrap {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	/*カテゴリ
====================================*/
	.blog_head .cat_entry {
		position: relative;
		left: -16px;
		float: left;
		display: flex;
		flex-wrap: wrap;
		width: auto;
	}
	.blog_head .cat_entry .cat_box {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0 16px;
		height: 32px;
		margin: 0 16px 16px 0;
		font-size: 1.6rem;
	}
	/*公開日・更新日
====================================*/
	.blog_head .day_entry {
		display: flex;
		align-items: center;
		font-size: 1.4rem;
		padding: 18px 0 0;
		width: auto;
		margin: 0 0 0 auto;
	}
	/*時計アイコン*/
	.blog_head .day_entry span::before {
		top: 0;
		font-size: 1.4rem;
		margin: 0 4px 0 0;
	}
	/*記事タイトル
====================================*/
	.blog_head .blog_title {
		clear: both;
		font-size: 3.2rem;
		line-height: 1.8;
		margin: 4px 0 20px 0;
	}
	/*タグ
====================================*/
	.blog_head .tag_entry {
		font-size: 1.2rem;
		margin-bottom: 24px;
	}

	/*SNSシェアボタン
====================================*/
	/*記事下*/
	.sns_share_bottom {
		margin-bottom: 104px;
	}
	/*本体*/
	.share_btn_cont .sb_box {
		padding: 0 8px;
		margin: 0 16px 0 0;
	}
	.share_btn_cont .sb_link {
		padding: 3px 0 3px;
	}
	/*アイコン*/
	.share_btn_cont .sb_box .lab {
		margin-right: 4px;
	}

	.la-facebook-square:before,
	.la-twitter:before,
	.la-line:before,
	.la-get-pocket:before {
		width: 12px;
		height: 12px;
	}

	/*テキスト*/
	.share_btn_cont .sb_box .txt {
		font-size: 1.2rem;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
本文
====================================*/
	.post_wrap {
		padding: 0 0 0 16px;
	}
	#blog_box {
		padding: 0 0 0 0px;
		margin-bottom: 80px;
		line-height: 2;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
  付属部分
====================================*/
	.annexed_cont {
		padding: 0 0 0 16px;
	}
	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
著者情報
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#author_area {
		padding: 32px;
		margin: 0 0 64px;
		border-width: 1px;
	}
	/*タイトル
====================================*/
	#author_area .aa_title {
		font-size: 2rem;
		margin: 0 0 24px;
	}
	#author_area .aa_title::before {
		font-size: 2rem;
		margin: 0 16px 0 0;
	}

	#author_area .entry {
		margin-left: 4px;
	}
	/*左側
====================================*/
	#author_area .wrap_l {
		width: 168px;
		height: 168px;
		overflow: hidden;
		margin: 0 40px 0 4px;
	}
	/*画像*/
	#author_area .img_box {
		position: relative;
		width: 100%;
	}
	#author_area .img_box::before {
		content: "";
		display: block;
		padding-top: 100%;
	}
	#author_area .img_box img {
		position: absolute;
		top: 0;
	}

	/*右側
====================================*/
	/*著者名*/
	#author_area .author_name {
		font-size: 20px;
		font-weight: bold;
		margin: 8px 0 16px;
	}
	/*テキスト*/
	#author_area .author_txt {
		margin: 0 0 24px;
	}
	#author_area .author_txt p {
		font-size: 1.6rem;
	}

	/*その他
====================================*/
	#author_area .other {
		display: flex;
		justify-content: flex-end;
		width: 100%;
		margin-top: 8px;
	}
	/*SNS*/
	#author_area .user_sns {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		width: auto;
		list-style: none;
		padding: 0;
		margin: 0 4px 0 0;
	}
	#author_area li {
		width: 24px;
		height: 24px;
		overflow: hidden;
		margin: 0 24px 0 0;
	}
	#author_area li a {
		display: block;
	}
	/*この著者の記事一覧*/
	#author_area .author_btn {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 172px;
		height: 40px;
		margin: 0;
		border-width: 1px;
		border-style: solid;
	}
	#author_area .author_btn span {
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 1.4rem;
		line-height: 1;
	}
	#author_area .author_btn span::after {
		content: "\f125";
		font-family: "Ionicons";
		font-size: 1.4rem;
		margin: 0 0 0 8px;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
コメント
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#comments_wrap {
		padding: 0;
		margin: 0 0 64px;
	}
	/*コメントがあった場合のタイトル*/
	#comments_wrap #comments {
		display: flex;
		align-items: center;
		font-size: 2rem;
		line-height: 1;
		padding: 0 0 16px 16px;
		margin: 0 0 24px;
		border-bottom-width: 1px;
		border-bottom-style: solid;
	}
	#comments_wrap #comments::before {
		content: "message";
		font-family: "Material Icons";
		font-size: 2.6rem;
		margin: 0 16px 0 0;
	}
	/*ナビ*/
	#comments_wrap .navigation {
		overflow: hidden;
		margin-bottom: 20px;
	}
	/*コメントリスト（複数人の場合）*/
	#comments_wrap .commentlist {
		overflow: hidden;
		list-style: none;
		padding: 0 0 0 16px;
	}
	/*li*/
	#comments_wrap .commentlist > li {
		overflow: hidden;
		margin: 0 0 32px;
		border-bottom-width: 1px;
		border-bottom-style: dashed;
	}
	/*子*/
	#comments_wrap .commentlist .children {
		list-style: none;
		padding: 0 0 0 40px;
	}
	#comments_wrap .commentlist .children li {
		padding: 0 0 0 10px;
	}
	/*コメント欄*/
	#comments_wrap .comment-meta {
		position: relative;
	}
	/*コメント投稿者*/
	#comments_wrap .comment-author {
		display: flex;
	}
	#comments_wrap .comment-author img {
		width: 72px;
		height: 72px;
		margin: 0 16px 0 0;
	}
	#comments_wrap .comment_entry {
		width: calc(100% - 88px);
		padding-bottom: 24px;
	}
	#comments_wrap .comment_entry.w-100 {
		width: 100%;
	}
	#comments_wrap .comment-author b,
	#comments_wrap .comment-author span {
		font-size: 1.6rem;
	}
	/*日付*/
	#comments_wrap .comment-metadata {
		font-size: 1.4rem;
	}
	#comments_wrap .comment-awaiting-moderation {
		margin-bottom: 10px;
		text-align: right;
	}
	/*コメントの枠*/
	#comments_wrap .comment-content {
		width: 100%;
		overflow: hidden;
		padding: 8px 0;
		margin: 0 0 16px;
		font-size: 1.6rem;
		line-height: 1.6;
	}
	/*返信ボタン*/
	#comments_wrap .reply {
		display: flex;
		overflow: hidden;
		width: 100%;
		margin-bottom: 16px;
	}
	#comments_wrap .reply a {
		font-size: 1.6rem;
		text-decoration: underline;
	}

	/*コメント*/
	#comments_wrap .comment-respond {
		width: 100%;
		overflow: hidden;
		margin: 0 0 64px;
	}
	/*エリアタイトル*/
	#comments_wrap #reply-title {
		display: flex;
		align-items: center;
		font-size: 2rem;
		line-height: 1;
		padding: 0 0 16px 16px;
		margin: 0 0 24px;
		border-bottom-width: 1px;
		border-bottom-style: solid;
	}
	#comments_wrap #reply-title::before {
		content: "add_comment";
		font-family: "Material Icons";
		font-size: 2.6rem;
		margin: 0 16px 0 0;
	}
	/*コメントフォーム*/
	#comments_wrap .comment-form {
		width: 100%;
		height: auto;
		overflow: hidden;
		padding: 0 0 0 24px;
	}
	/*テキスト*/
	#comments_wrap .comment-notes,
	#comments_wrap .logged-in-as {
		font-size: 1.6rem;
		line-height: 1.6;
		margin: 0 0 32px;
	}
	/*必須*/
	#comments_wrap .required {
		color: #ad0505;
	}

	/*入力欄ラベル*/
	#comments_wrap .comment-form-author label,
	#comments_wrap .comment-form-email label,
	#comments_wrap .comment-form-url label,
	#comments_wrap .comment-form-comment label {
		display: block;
		font-size: 1.4rem;
		margin: 0 0 16px;
	}
	/*入力エリア*/
	#comments_wrap .comment-form-author,
	#comments_wrap .comment-form-email,
	#comments_wrap .comment-form-url,
	#comments_wrap .comment-form-comment {
		margin: 0 0 32px;
	}
	/*Textarea*/
	#comments_wrap .comment-form-comment textarea {
		width: 100%;
		height: 120px;
		padding: 4px;
		box-sizing: border-box;
		border-width: 1px;
		border-style: solid;
		font-size: 1.4rem;
	}
	/*Input：名前、メール、サイト*/
	#comments_wrap .comment-form-author input[type="text"],
	#comments_wrap .comment-form-email input[type="email"],
	#comments_wrap .comment-form-url input[type="url"] {
		width: 100%;
		height: 40px;
		padding: 4px;
		box-sizing: border-box;
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		border-width: 1px;
		border-style: solid;
		font-size: 1.4rem;
	}
	/*送信ボタン*/
	#comments_wrap .form-submit {
		text-align: left;
		padding: 10px 0px;
	}
	#comments_wrap .form-submit input[type="submit"] {
		width: 128px;
		height: 40px;
		border: 0;
		cursor: pointer;
		font-size: 1.2rem;
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
	}

	#comments_wrap .form-submit input:focus {
		border: none;
	}
	#comments_wrap .nocomments {
		display: none;
		padding: 20px 0;
		margin-bottom: 30px;
		border-top: 1px dotted rgba(0, 0, 0, 0.5);
		border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ページナビ（次の記事、前の記事）
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#pn_pager {
		width: 100%;
		overflow: hidden;
		padding: 0;
		margin: 64px auto;
	}

	#pn_pager .pre_p,
	#pn_pager .next_p {
		width: 41%;
		font-size: 1.6rem;
		line-height: 1.4;
	}
	#pn_pager .pre_p {
		float: left;
		text-align: left;
	}
	#pn_pager .next_p {
		float: right;
		text-align: right;
	}
	/*前の記事*/
	#pn_pager .txt_l {
		display: flex;
		align-items: center;
		font-size: 1.4rem;
		margin: 0 0 24px;
	}
	#pn_pager .txt_l::before {
		content: "\f3d2";
		display: flex;
		justify-content: center;
		align-items: center;
		width: 32px;
		height: 32px;
		margin: 0 16px;
		color: #c6bfb6;
		font-family: "Ionicons";
		font-size: 2rem;
		border: 1px solid #c6bfb6;
	}
	/*次の記事*/
	#pn_pager .txt_r {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		font-size: 1.4rem;
		margin: 0 0 24px;
	}
	#pn_pager .txt_r::after {
		content: "\f3d3";
		display: flex;
		justify-content: center;
		align-items: center;
		width: 32px;
		height: 32px;
		margin: 0 16px;
		color: #c6bfb6;
		font-family: "Ionicons";
		font-size: 2rem;
		border: 1px solid #c6bfb6;
	}
	/*画像とタイトル*/
	#pn_pager .pn_entry {
		width: 100%;
	}
	/*画像*/
	#pn_pager .pn_img {
		position: relative;
		width: 120px;
		overflow: hidden;
	}
	#pn_pager .pn_img::before {
		content: "";
		display: block;
		padding-top: 67%;
	}
	#pn_pager .pn_img img {
		position: absolute;
		top: 0;
		left: 0;
	}
	/*記事タイトル*/
	#pn_pager .pn_title {
		width: calc(100% - 134px);
		font-size: 1.6rem;
		line-height: 1.4;
		padding: 4px 0 0 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
  関連記事
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.related_post_area {
		margin: 88px 0 104px;
	}
	/*エリアタイトル*/
	.related_post_area .area_title {
		font-size: 2rem;
		padding: 0 0 16px 16px;
		margin: 0 0 32px;
	}
	.related_post_area .area_title:before {
		font-size: 2.6rem;
		margin: 0 16px 0 0;
	}
	/*ul*/
	.related_post_cont {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: flex-start;
	}
	/*li*/
	.related_post_cont li {
		width: calc(100% / 3);
		overflow: hidden;
		padding: 0 16px;
		margin: 0 0 40px 0;
	}
	/*タイトル*/
	.related_post_cont .title_entry {
		font-size: 1.6rem;
		margin: 16px 0 0;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ARCHIVE
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#archive_wrap {
	}
	#archive_area {
		width: 832px;
	}
	/*ul
====================================*/
	#archive_cont {
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
		width: 100%;
		list-style: none;
		padding: 0;
		margin: 0 0 96px;
	}
	/*サイドバー有り*/
	#archive_cont.on_side {
		justify-content: space-between;
	}
	/*サイドバー無し*/
	#archive_cont.no_side {
		justify-content: flex-start;
	}
	/*li コンテンツ
====================================*/
	#archive_cont .box {
		position: relative;
		width: 400px;
		overflow: hidden;
		padding: 0 0 0 16px;
		margin: 0 0 64px 0;
	}
	/*サイドバー無し*/
	#archive_cont.no_side .box {
		margin: 0 26px 64px 0;
	}
	#archive_cont.no_side .box :nth-child(3) {
		margin: 0 0 64px 0;
	}
	/*画像
====================================*/
	#archive_cont .img_entry {
		position: relative;
		width: 100%;
		overflow: hidden;
		margin: 0;
	}
	#archive_cont .img_entry::before {
		content: "";
		display: block;
		padding-top: 67%;
	}
	#archive_cont .img_entry img {
		position: absolute;
		top: 0;
	}
	/*日付*/
	#archive_cont .day_entry {
		position: absolute;
		bottom: 0;
		right: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: auto;
		height: auto;
		padding: 4px 12px;
		font-size: 1.4rem;
	}
	/*タイトル*/
	#archive_cont .title_entry {
		font-size: 1.6rem;
		font-weight: bold;
		line-height: 1.5;
		margin: 16px 0;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}
	/*抜粋or本文*/
	#archive_cont .txt_entry {
		font-size: 1.4rem;
		line-height: 1.5;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}
	/*カテゴリー*/
	#archive_cont .cat_entry {
		position: absolute;
		top: 18px;
		left: 0;
		list-style: none;
		padding: 0;
		margin: 0;
	}
	#archive_cont .cat_entry .cat_box {
		display: none;
	}
	#archive_cont .cat_entry .cat_box:first-child {
		display: flex;
		align-items: center;
		width: auto;
		height: 32px;
		padding: 0 16px;
		font-size: 1.6rem;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
検索
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	#archive_cont .search_box {
		margin-bottom: 40px;
	}
	#archive_cont .search_box .post_head {
		align-items: center;
	}
	/*画像
===============================*/
	#archive_cont .search_box .img_frame {
		width: 128px;
	}

	/*entry
===============================*/
	#archive_cont .search_box .entry {
		width: calc(100% - 128px - 24px);
	}
	/*タイトル*/
	#archive_cont .search_box .title_entry {
		margin: 0 0 16px;
		line-height: 1;
		-webkit-line-clamp: 1;
	}
	/*テキスト*/
	#archive_cont .txt_entry {
		-webkit-line-clamp: 2;
	}

	/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ページャー
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
	.page_nav_box {
		margin: 0 0 80px;
	}
	.page_nav_box .wp-pagenavi {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		text-align: center;
		margin: 0 0 24px;
	}
	.page_nav_box .wp-pagenavi a,
	.page_nav_box .wp-pagenavi span {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 32px;
		height: 32px;
		padding: 0;
		margin: 8px;
		font-size: 1.4rem;
		font-weight: bold;
		border: 1px solid;
	}
	.page_nav_box .kensu {
		font-size: 1.4rem;
		line-height: 1;
		text-align: center;
	}

	/*ここまで*/
}
