/*
Theme Name:		Welcart Mode
Theme URI:		http://www.welcart.com/
Author:			Collne Inc.
Author URI:		http://www.collne.com/
Description:	Welcart Mode is the Welcart dedicated theme.
Version:		1.0.2
License:		GNU General Public License v2 or later
License URI:	http://www.gnu.org/licenses/gpl-2.0.html
Tags:			responsive-layout, white, two-columns, right-sidebar
*/

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
/* -------------------------------------------------------------------------- */

/*	Font Family
/* -------------------------------------------------------------------------- */
html {
	overflow: scroll;
	overflow-x: hidden;
}

body {
	font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.other {
	font-family:  'sans-serif';
}

.font-eng{
	font-family: 'Josefin Sans', sans-serif;
}


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

/*	Basic
/* -------------------------------------------------------------------------- */

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	background: #fff;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	color: #333;
	font-size: 13px;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
}

/* -- a -- */
a {
	color: #333;
	text-decoration: none;
	outline: none;
}

a, a > img {
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

/* -- img -- */
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/* -- ul -- */
ul {
	list-style: none;
}

/* -- appearance -- */
input, select, textarea {
	font-size: 1em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

/* -- textarea -- */
textarea {
	padding: 6px;
	width: 100%;
	height: 136px;
	border: 1px solid #aaa;
	border-radius: 4px;
	vertical-align: bottom;
}
/* -- input: text, password, email, search, url -- */
input[type='text'],
input[type='password'],
input[type='email'],
input[type='tel'],
input[type='search'],
input[type='url'] {
	padding: 0 12px;
	width: 100%;
	height: 44px;
	border: 1px solid #aaa;
	border-radius: 4px;
}

/* -- input: button, submit, reset -- */
input[type="button"],
input[type="submit"],
input[type="reset"] {
	background: #eee;
	border: none;
	outline: none;
}

/* -- select -- */
select {
	background: url( assets/images/select-arrow.svg ) center right 12px no-repeat #fff;
	padding: 0 36px 0 12px;
	height: 44px;
	border: 1px solid #aaa;
	border-radius: 4px;
	max-width: 100%;
}
select[multiple] {
	background: none;
	padding: 0;
	height: inherit;
}
select[multiple] option {
	padding: 1px 5px;
}

/* -- radio -- */
input[type="radio"] {
	display: inline-block;
	margin: 0;
	width: 25px;
	height: 25px;
	opacity: 0;
	vertical-align: middle;
	z-index: 0;
}
input[type="radio"] + .radiomark {
	display: inline-block;
	text-align: center;
	margin-right: 8px;
	margin-left: -25px;
	width: 25px;
	height: 25px;
	border: 2px solid #ddd;
	vertical-align: middle;
	border-radius: 50%;
	z-index: -1;
	position: relative;
}
input[type="radio"] + .radiomark:before {
	opacity: 0;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
	display: block;
	position: absolute;
	content: '';
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-khtml-border-radius: 50%;
	border-radius: 50%;
	height: 1px;
	width: 1px;
	top: 10px;
	left: 10px;
	margin: auto;
	background: #000;
}
input[type="radio"]:checked + .radiomark:before {
	opacity: 1;
	height: 11px;
	width: 11px;
	top: 5px;
	left: 5px;
}

/* -- checkbox -- */
input[type="checkbox"] {
	display: inline-block;
	margin: 0;
	width: 25px;
	height: 25px;
	opacity: 0;
	vertical-align: middle;
}
input[type="checkbox"] + .checkmark {
	display: inline-block;
	text-align: center;
	margin-right: 6px;
	margin-left: -25px;
	width: 25px;
	height: 25px;
	border: 1px solid #ddd;
	vertical-align: middle;
	border-radius: 4px;
}
input[type="checkbox"] + .checkmark:before {
	display: inline-block;
	content: "✔";
	font-size: 0;
	vertical-align: middle;
	opacity: 0;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
input[type="checkbox"]:checked + .checkmark:before {
	font-size: inherit;
	opacity: 1;
}

/* -- :hover -- */

a:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
	cursor: pointer;
}
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
	outline: none;
}
/* -- :focus -- */

input[type="button"]:focus,
input[type="submit"]:focus,
input[type="reset"]:focus {
	outline: none;
}

/* -- em + cite -- */
em,
cite {
	font-style: normal;
}

/* -- Footer Fixed -- */
body,
#site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
body.admin-bar,
.admin-bar #site {
	min-height: calc(100vh - 46px);
}
@media screen and (min-width: 783px) {
	body.admin-bar,
	.admin-bar #site {
		min-height: calc(100vh - 32px);
	}
}
#site-footer {
	margin-top: auto;
}


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

/*	Keyframes
/* -------------------------------------------------------------------------- */


@keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
@-moz-keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
@-webkit-keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}


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

/*	Class
/* -------------------------------------------------------------------------- */


/*  .column
----------------------------------------*/

.column {
	display: flex;
	flex-wrap: wrap;
}

.column .info {
	padding: 8px 8px 0;
}
.column .info h2 {
	font-size: 11px;
	font-weight: normal;
}
.column .info .price {
	line-height: 2;
}

/*  .product-column
----------------------------------------*/

.product-column5 .list {
	margin: 0 10px 0 0;
	width: calc( 50% - 5px );
}
.product-column5 .list:nth-child( even ) {
	margin-right: 0;
}
.product-column5 .list:nth-child( n+3 ) {
	margin-top: 20px;
}

/*  Other
----------------------------------------*/

.tax {
	font-size: 10px;
}
.rightnum.tax {
	font-size: inherit;
}

/* -- .tax_inc_block -- */

.tax_inc_block {
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'sans-serif';
}



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

/*	Header
/* -------------------------------------------------------------------------- */


.header-group {
	padding: 0;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 9999;
}
main{
	margin-top: 55px;
}
.header-group .header_inner {
	position: relative;
}

/* ----- .fixed_header ----- */
.header-group.fixed_header {
	position: fixed;
	width: 100%;
	z-index: 2;
	top: 0;
}
.header-group.fixed_header + main {
	margin-top: 68.75px;
}
/* ----- .fixed_header + Adomin Bar ----- */
.loginbar .header-group.fixed_header {
	position: inherit;
}
.loginbar .header-group.fixed_header + main {
	margin-top: 0;
}

/*  site-branding
----------------------------------------*/

.site-branding {
	height: 55px;
}

/* ---- .site-description ---- */

.site-description {
	margin-right: 86px;
	font-size: 11px;
}

/* ---- .site-logo ---- */

.site-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 55px;
}
.site-logo a{
	width: 125px;
	height: 10px;
	background: url(assets/images/logo_sp.jpg) center center no-repeat;
	background-size: 125px;
}
.site-logo img {
	display: none;
}

/* ---- .site-title ---- */

.site-title {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .8px;
	line-height: 1.4;
	min-height: 44px;
	display: flex;
	align-items: center;
}
.site-description + .site-branding .site-title {
	padding-top: 0;
}

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

/* ---- checkbox: .open-drawer ---- */

input.open-check {
	display: none;
}

/* ---- .trigger-menu ---- */

.trigger-menu {
	display: block;
	position: relative;
	width: 15px;
	height: 12px;
}
.trigger-menu .bar-top,
.trigger-menu .bar-bottom {
	background: #000;
	display: block;
	position: absolute;
	left: 50%;
	width: 15px;
	height: 2px;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	-webkit-transition: all .4s;
	transition: all .4s;
}
.trigger-menu .bar-top {
	top: 22px;
}
.trigger-menu .bar-middle:before,
.trigger-menu .bar-middle:after {
	background-color: #000;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 15px;
	height: 2px;
	border-radius: 4px;
	content: '';
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all .4s;
	transition: all .4s;
}
.trigger-menu .bar-bottom {
	bottom: 22px;
}


/*  drawer-menu-sp
----------------------------------------*/


/* ---- sp.trigger-menu ---- */

.drawer-sp .trigger-menu {
	position: absolute;
	top: 0;
	right: 0;
	padding: 27px 22px;
}
.drawer-sp .trigger-menu:hover {
	cursor: pointer;
}

/* ---- .open-drawer-sp:checked ---- */

/* -- sp.trigger-menu -- */

.open-check-sp:checked ~ .trigger-menu .bar-top {
	-webkit-transform: translate(50%) scale(0);
	-ms-transform: translate(50%) scale(0);
	transform: translate(50%) scale(0);
}
.open-check-sp:checked ~ .trigger-menu .bar-middle {
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	-ms-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
}
.open-check-sp:checked ~ .trigger-menu .bar-middle:before {
	top: 31px;
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	-ms-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, 0);
}
.open-check-sp:checked ~ .trigger-menu .bar-middle:after {
	top: 21px;
	-webkit-transform: rotate(-45deg) translate(-50%, -50%);
	-ms-transform: rotate(-45deg) translate(-50%, -50%);
	transform: rotate(-45deg) translate(-50%, -50%);
}
.open-check-sp:checked ~ .trigger-menu .bar-bottom {
	-webkit-transform: translate(-50%) scale(0);
	-ms-transform: translate(-50%) scale(0);
	transform: translate(-50%) scale(0);
}


/* ---- .drawer-menu-sp ---- */

.drawer-menu-sp {
	background-color: #fff;
	overflow-y: scroll;
	visibility: hidden;
	position: absolute;
	left: -1em;
	z-index: 998;
	width: calc(100% + 2em);
	padding: 30px 0;
	top: 55px;
}
.drawer-menu-sp.open {
	display: block !important;
}
.drawer-menu-sp > .in {
	position: relative;
}

/*  drawer-menu-pc
----------------------------------------*/

/* ---- pc.trigger-menu ---- */

.drawer-menu-pc .trigger-menu {
	display: none;
}


/*  drawer-tabs
----------------------------------------*/

.drawer-tabs {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	padding: 0 20px;
}
.drawer-tabs li {
	position: relative;
	width: 33.333%;
	padding: 20px 10px 10px;
	text-align: center;
}
.drawer-tabs li:hover {
	cursor: pointer;
}
.drawer-tabs li:hover:after {
	background: #ddd;
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 30px;
	height: 2px;
	content: "";
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);	
}
.drawer-tabs li a {
	pointer-events: none;
}

/* -- .current -- */
.drawer-tabs li.current:after {
	background: #ddd;
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 30px;
	height: 2px;
	content: "";
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}


/*  global-navigation (default)
----------------------------------------*/

.global-navigation ul.default-menu {
	position: relative;
}
.global-navigation .default-menu li.menu-item-has-children {
	position: relative;
}
.global-navigation .default-menu a ~ ul.sub-menu li {
	border-bottom: none;
}
.global-navigation .default-menu a ~ ul.sub-menu li a {
	padding: 0 20px 24px;
}
.global-navigation .default-menu a ~ ul.sub-menu li a ~ span {
	height: 47px;
	top: -12px;
}
.global-navigation {
	overflow: hidden;
}
.global-navigation ul.menu {
	position: relative;
}
.global-navigation li,
.global-navigation .menu > li:last-child {
	border-bottom: 1px solid #ddd;
}
.global-navigation ul > li:last-child {
	border: none;
}
.global-navigation li a {
	display: block;
	padding: 24px 20px;
}
.global-navigation li a ~ span {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 70px;
	height: 70px;
	text-align: center;
}
.global-navigation li a ~ span:before {
	position: absolute;
	top: 50%;
	left: 50%;
	content: "\e908";
	color: #666767;
	font-family: 'welicon' !important;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.global-navigation li a ~ span.open:before {
	content: "\e90c";
}
.global-navigation .menu li.menu-item-has-children {
	position: relative;
}
.global-navigation li.menu-item-has-children a ~ ul.sub-menu {
	display: none;
	margin-left: 12px;
}

/*  global-navigation (tab)
----------------------------------------*/

.global-navigation .level-0 ul li {
	border: none;
}
.global-navigation .level-0 ul li a {
	padding: 0 20px 24px;
}
.global-navigation .level-0 ul li a ~ span {
	height: 47px;
	top: -12px;
}
.global-navigation .tab-menu {
	display: flex;
	flex-wrap: wrap;
	padding: 0 20px;
}
.global-navigation .tab-menu li {
	width: 33.333%;
	padding: 20px 10px 10px;
	text-align: center;
}
.global-navigation .tab-menu .sub-menu {
	display: block;
	padding: 0;
}

/*  sub-navigation
----------------------------------------*/

.sub-navigation {
	background-color: #f3f3f3;
	margin-bottom: 150px;
}
.sub-navigation li a {
	display: block;
	border-bottom: 1px solid #ddd;
	padding: 20px;
}

/*  shopping-navigation
----------------------------------------*/

.shopping-navigation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid #ddd;
}

/*  search
----------------------------------------*/

.shopping-navigation form {
	background-color: #f3f3f3;
	display: block;
	padding: 24px 20px;
}
.search-box {
	position: relative;
}
.search-box .search-text {
	padding-right: 54px;
	width: 100%;
	border: none;
}
.search-box .searchsubmit {
	background: none;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	font-family: 'welicon';
	font-size: 20px;
	width: 54px;
	height: 44px;
}

/*  membership
----------------------------------------*/

.membership {
	padding: 24px 20px;
}
.membership ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.membership li:first-child {
	width: 100%;
	margin-bottom: 8px;
}
.membership li:first-child:before {
	display: inline-block;
	color: #777;
	font-family: 'welicon';
	font-size: 16px;
	margin-right: 8px;
	content: "\e906";
}
.membership li:not(:first-child) {
	width: calc( 50% - 3px );
}
.membership li a {
	display: block;
	height: 44px;
	border: 1px solid #ccc;
	border-radius: 4px;
	text-align: center;
	line-height: 44px;
}


/*  incart
----------------------------------------*/

.incart {
	position: absolute;
	top: 0px;
	left: 15px;
}
.incart > .in {
	display: flex;
}
.incart > .in a,
.incart > .in label{
	display: block;
	height: 55px;
	margin-right: 10px;
	width: 15px;
}
.incart .welicon-shopping-cart {
	background: url(assets/images/ico_shopping.png) center center no-repeat;
	background-size: 15px;
	color: #000000;
	display: block;
	width: 100%;
	height: 100%;
}
.incart .welicon-ico-favorites {
	background: url(assets/images/ico_favorites.png) center center no-repeat;
	background-size: 15px;
	color: #000000;
	display: block;
	width: 100%;
	height: 100%;
}
.incart .welicon-ico-search {
	background: url(assets/images/ico_search.png) center center no-repeat;
	background-size: 15px;
	color: #000000;
	display: block;
	width: 100%;
	height: 100%;
}


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

/*	#toTop
/* -------------------------------------------------------------------------- */

#toTop {
	position: fixed;
	right: 10px;
	bottom: 100px;
}
@media screen and (max-width: 879px) {
	#toTop {
		right: 15px;
		bottom: 130px;
	}
}

#toTop a {
	background-color: #777;
	display: block;
	text-align: center;
	font-size: 16px;
	width: 40px;
	height: 40px;
	line-height: 40px;;
	border-radius: 50%;
}
#toTop a span:before {
	color: #fff;
}

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

/*	Footer
/* -------------------------------------------------------------------------- */


.footer-group .in {
	background: #f4f4f4;
	padding: 38px 12px;
}


/*  shop-sns
----------------------------------------*/

.shop-sns {
	display: flex;
	margin: 0 0 24px;
	justify-content: center;
}
.shop-sns li {
	margin: 0 4px;
}
.shop-sns a {
	background: #fff;
	display: block;
	position: relative;
	width: 35px;
	height: 35px;
	border-radius: 50%;
}
.shop-sns span {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 18px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}


/*  footer-navigation
----------------------------------------*/

.footer-navigation {
}
.footer-navigation ul {
	display: flex;
	font-size: 11px;
	flex-wrap: wrap;
	justify-content: center;
}
.footer-navigation li a {
	display: block;
	padding: 4px 0;
}
.footer-navigation li a:after {
	background-color: #ddd;
	display: inline-block;
	width: 1px;
	height: 10px;
	margin: 0 12px;
	content: " ";
}
.footer-navigation li:last-child a:after {
	display: none;
}


/*  copyright
----------------------------------------*/

.copyright {
	background: #313131;
	padding: 12px;
	text-align: center;
	color: #fff;
	font-size: 12px;
	letter-spacing: .5px;
}


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

/*	Content
/* -------------------------------------------------------------------------- */

.site-content {
	margin: 24px auto 48px;
	padding: 0 1em;
	max-width: calc( 1180px + 2em );
}
.home .site-content {
	margin-top: 0;
	padding: 0;
	max-width: none;
}

.section-home .entryfoot .more a{
	font-family: 'Josefin Sans', sans-serif;
}

/*  .entry-head
----------------------------------------*/

.entry-head {
	margin-bottom: 24px;
}
.entry-head h1 {
	font-size: 20px;
	font-family: 'Josefin Sans', sans-serif;
}

.entry-head .en,
.entry-head.title-small h1 {
	line-height: 1;
}
.entry-head .en {
	display: block;
	font-size: 20px;
	font-weight: 700;
	text-transform: capitalize;
}
.entry-head.title-small h1,
.entry-head h1.be_small {
	display: inline-block;
	margin-top: 8px;
	font-size: 11px;
	font-weight: normal;
}
.entry-head.title-small .coordinate-tag-title {
	font-size: 24px;
	font-weight: 700;
}

/*  .list-info
----------------------------------------*/

.list-info {
	margin-bottom: 12px;
}
.count-items {
	text-align: center;
}
.count-items span {
	margin-right: 6px;
	font-size: 20px;
	font-weight: 700;
}
.pages-info {
	margin-bottom: 12px;
	text-align: center;
}
.new-old {
	margin-top: 12px;
	text-align: right;
}
.new-old select {
	height: 34px;
}

/*  .page-numbers
----------------------------------------*/

.pagination-wrap.bottom {
	margin-top: 36px;
}
.page-numbers {
	display: flex;
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'sans-serif';
	justify-content: center;
	align-items: center;
}
.page-numbers li {
	margin: 0 3px 6px;
	position: relative;
	width: 31px;
	height: 31px;
}
.page-numbers li .page-numbers {
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
	color: #5b5b5b;
	border: 1px solid #c5c5c5;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;
	border-radius: 4px;
}
.page-numbers li .page-numbers.current {
	background-color: #5b5b5b;
	color: #fff;
	border: 1px solid #5b5b5b;
}


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

/*	Front Page
/* -------------------------------------------------------------------------- */

/*  key-visual
----------------------------------------*/

.home-slide-container {
	margin-bottom: 40px;
}
.home-slide-container img {
	width: 100%;
}
.home-slide-container .slider {
	opacity: 0;
	transition: opacity 1s linear;
}
.home-slide-container .slider.slick-initialized {
	opacity: 1;
}
.home-slide-container .slide-content {
	background: rgba( 0, 0, 0, .5 );
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0.75em 1em;
	color: #fff;
	width: 100%;
}
.home-slide-container .slide-content .headline {
	font-size: 100%;
	margin-bottom: 5px;
	line-height: 1.2;
}
.home-slide-container .slide-content p {
	font-size: 90%;
	line-height: 1.4;
}
.home-slide-container .slide-dots {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 1em 0 0;
	text-align: center;
	line-height: 1;
}
.home-slide-container .slide-dots button {
	background-color: #ccc;
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	margin: 0 3px;
	padding: 0;
	font-size: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	text-indent: 100%;
	border: none;
	vertical-align: super;
}
.home-slide-container .slide-dots .slick-active button,
.home-slide-container .slide-dots button:hover {
	background: #777;
}
.home-slide-container .list {
	position: relative;
}
.home-slide-container{
	position: relative;
}
.home-slide-container::before{
	position: absolute;
	left: 0;
	top: 0;
	width: calc(50% - 500px);
	height: 100%;
	content: "";
	background-color: rgba(0,0,0,0.6);
	z-index: 999;
}
.home-slide-container::after{
	position: absolute;
	right: 0;
	top: 0;
	width: calc(50% - 500px);
	height: 100%;
	content: "";
	background-color: rgba(0,0,0,0.6);
	z-index: 999;
}


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

/*	Coordinate
/* -------------------------------------------------------------------------- */

/*  Common
----------------------------------------*/

/* -------- .coordinate-column -------- */

.coordinate-column.slick-slider {
	display: block;
}
.coordinate-column:not(.slick-slider) {
	display: flex;
	flex-wrap: wrap;
}
.coordinate-column .img {
	margin-bottom: 10px;
	position: relative;
}
.coordinate-column .img date {
	display: inline-block;
	padding: 3px 6px;
	background-color: rgba(255, 255, 255, .7);
	color: #333;
	position: absolute;
	top: 10px;
	right: 10px;
	line-height: 1.2;
	font-size: 11px;
	border-radius: 50px;
}
.coordinate-column .the_title {
	margin-bottom: 5px;
	font-size: 12px;
}

/* ---- model-info ---- */

.coordinate-column .model-info {
	display: flex;
	align-items: center;
}
.coordinate-column .thumbnail {
	overflow: hidden;
	max-width: 40px;
	border-radius: 50%;
}
.coordinate-column .model-info .thumbnail + .in {
	margin-left: 12px;
}
.coordinate-column .model-info .name {
	margin-bottom: -2px;
	line-height: 1.2;
}
.coordinate-column .model-info span {
	display: inline-block;
	font-size: 11px;
}
.coordinate-column .model-info .height:before {
	margin: 0 4px;
	display: inline-block;
	content: "/";
}


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

/*	Brand
/* -------------------------------------------------------------------------- */

.brand-logo {
	text-align: center;
}

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

/*	Model List
/* -------------------------------------------------------------------------- */

.model-list-header {
	display: flex;
	align-items: center;
}
.model-list-header .thumbnail {
	margin-right: 1em;
	width: 80px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-khtml-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
}
.entry-head.title-small.model-list-header .model-name {
	display: block;
	margin-top: 0;
	font-size: 28px;
	font-weight: 700;
	text-transform: capitalize;
}
.model-list-header .model-info span {
	display: inline-block;
	font-size: 14px;
}
.model-list-header .model-info .height:before {
	margin: 0 4px;
	display: inline-block;
	content: "/";
}
.coordinate-column .list .title {
	margin-bottom: 4px;
	font-size: 14px;
	font-weight: 700;
}
.coordinate-column .list .data {
	margin-top: 4px;
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'sans-serif';
	font-size: 13px;
	letter-spacing: .5px;
}

.global-menu_pc{
	display: none;
}

.header-login{
	display: none;
}


/**
 * 16.3 Tablet Large 880px
 */
@media screen and (min-width: 55em) {


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

	/*	Basic
	/* -------------------------------------------------------------------------- */

	body {
		font-size: 14px;
		line-height: 1.6;
	}
	
	/* ---- input ---- */
	input[type="radio"] + .radiomark {
		margin-right: 12px;
	}

	/* ---- a ---- */
	a:hover img {
		opacity: .7;
		-webkit-transition-duration: .5s;
		-moz-transition-duration: .5s;
		transition-duration: .5s;
	}
	#site {
		position: relative;
		left: 0;
		-webkit-transition-duration: .5s;
		-moz-transition-duration: .5s;
		transition-duration: .5s;
	}
	#site.open {
		left: -350px;
	}
	
	
	.header-group {
		padding: 1em;
		position: initial;
		width: auto;
		top: auto;
		left: auto;
		background: #fff;
		z-index: 9999;
	}
	main{
		margin-top: 0;
	}
	/* -------- .fixed_header -------- */
	
	.header-group.fixed_header + main {
		margin-top: 72px;
	}
	
	/* ----- .fixed_header + Adomin Bar ----- */
	.admin-bar .header-group.fixed_header {
		position: fixed;
		top: 32px;
	}
	.admin-bar .loginbar .header-group.fixed_header + main {
		margin-top: 72px;
	}
	
	/* -------- .drawe-bg-pc -------- */

	.drawe-bg-pc {
		background: rgba( 0, 0, 0, .3);
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		-webkit-transition-duration: .5s;
		-moz-transition-duration: .5s;
		transition-duration: .5s;
		z-index: 2;
		cursor: url(assets/images/icon-close.svg), auto;
	}
	#site.open .drawe-bg-pc {
		left: 0;
	}


	/*  Other
	----------------------------------------*/

	.tax {
		font-size: 12px;
	}


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

	/*	Header
	/* -------------------------------------------------------------------------- */

	.header-group {
		padding: 0;
	}
	.header-group .header_inner {
		display: block;
		flex-wrap: wrap;
		justify-content: center;
		max-width: calc(1000px + 4em) !important;
		padding: 0 2em !important;
		margin: 0 auto;
	}

	/*  key-visual
	----------------------------------------*/
	
	.home-slide-container .slide-content {
		padding: 1em 1.42857em;
	}
	.home-slide-container .slide-content .headline {
		font-size: 120%;
		margin-bottom: 8px;
	}
	.home-slide-container .slide-content p {
		font-size: 100%;
		line-height: 1.5;
	}

	/* -------- .site-description -------- */

	.site-description {
		margin: 12px 120px 0 20px;
		width: 100%;
	}

	/*  site-branding
	----------------------------------------*/
	
	.site-branding {
		margin: 0;
		padding: 50px 0 40px;
		height: auto;
	}
	.site-logo{
		height: auto;
	}
	.site-logo a{
		display: block;
		width: 133px;
		height: auto;
		background: none;
	}
	.site-logo img{
		display: block;
	}
	.site-description + .site-branding .site-title {
		padding-top: 5px;
	}

	/* -------- .site-description -------- */

	.site-title {
		padding-top: 5px;
		font-size: 24px;
	}
	
	.header-login{
		position: absolute;
		top: 85px;
		right: 2em;
		display: flex;
	}
	.header-login li a,
	.header-login li{
		font-size: 12px;
		color: #000000;
	}

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

	/* -------- .drawer-sp -------- */
	.drawer-sp{
		display: none;
	}
	.drawer-sp > .trigger-menu {
		display: none;
	}
	.drawer-menu-sp {
		background: none;
		position: static;
		overflow-y: inherit;
		display: block !important;
		padding: 0;
		font-size: 15px;
		width: auto;
		visibility: unset;
	}
	.drawer-menu-sp > .in {
		position: static;
	}

	/* -------- .drawer-tabs -------- */

	.drawer-tabs {
		margin: 0;
		padding: 0;
	}
	.drawer-tabs li {
		margin-right: 12px;
		padding: 24px 20px;
		width: auto;
	}
	.drawer-tabs li:hover:after,
	.drawer-tabs li.current:after {
		top: 0;
		bottom: auto;
		width: 100%;
	}
	.drawer-tabs li a {
		pointer-events: unset;
	}
	
	/* -------- .global-navigation -------- */

	.drawer-tabs + .global-navigation.type-mega {
		background-color: #fff;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		z-index: 1;
		overflow: inherit;
	}
	.global-navigation.type-mega {
		overflow: inherit;
	}

	/* -------- .default-menu -------- */

	.global-navigation ul.default-menu {
		display: flex;
		flex-wrap: wrap;
		font-size: 15px;
	}
	.global-navigation ul.default-menu li a {
		position: relative;
		margin-right: 12px;
		padding: 24px 20px;
		width: auto;
		font-family: 'Josefin Sans', sans-serif;
	}
	.global-navigation ul.default-menu > li:hover a:after {
		background: #ddd;
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		content: "";
		width: 100%;
		height: 2px;
	}
	.type-mega.global-navigation ul.default-menu .sub-menu {
		display: none;
		position: absolute;
		top: 50%;
		left: 0;
		opacity: 0;
		margin: 0;
		padding: 12px;
		font-size: 14px;
		min-width: 300px;
		height: 0;
	}
	.type-mega.global-navigation ul.default-menu > li:hover > .sub-menu {
		background-color: #fafafa;
		display: block;
		height: auto;
		position: absolute;
		top: 100%;
		left: 0;
		opacity: 1;
		z-index: 1;
		box-shadow: 0px 3px 5px rgba(0,0,0,.1);
		animation-duration: 0.3s;
		animation-name: fade-in;
		-moz-animation-duration: 0.3s;
		-moz-animation-name: fade-in;
		-webkit-animation-duration: 0.3s;
		-webkit-animation-name: fade-in;
	}
	.type-mega.global-navigation ul.default-menu ul .sub-menu {
		display: block;
		position: static;
		opacity: 1;
		margin-top: 0;
		margin-left: 10px;
		padding: 0;
		font-size: 13px;
		height: auto;
		box-shadow: none;
	}
	.global-navigation .default-menu a ~ ul.sub-menu li a {
		padding: 8px 20px;
	}
	.global-navigation ul.default-menu li:hover > .sub-menu li a:after {
		display: none;
	}
	.global-navigation li,
	.global-navigation .menu > li:last-child {
		border: none;
	}
	.global-navigation li.menu-item-has-children a ~ ul.sub-menu {
		position: static;
	}
	.global-navigation ul.menu > li {
		max-height: 0;
		display: block;
		opacity: 0;
		overflow: hidden;
	}
	.global-navigation ul.menu > li.open {
		display: block;
		max-height: 100vh;
		opacity: 1;
		animation-duration: 0.8s;
		animation-name: fade-in;
		-moz-animation-duration: 0.8s;
		-moz-animation-name: fade-in;
		-webkit-animation-duration: 0.8s;
		-webkit-animation-name: fade-in;
	}
	.global-navigation.type-accordion  {
		position: relative;
		top: 100%;
		left: 0;
		width: auto;
	}
	.global-navigation .level-0 ul li {
		margin-bottom: 8px;
	}
	.global-navigation .level-0 ul li:last-child {
		margin-bottom: 0;
	}
	
	


	/* -------- type-mega -------- */

	.type-mega {
		font-size: 14px;
	}
	.type-mega .menu {
		margin: 0 auto;
		max-width: 980px;
	}
	.type-mega li.menu-item-has-children a ~ ul.sub-menu {
		display: block;
		position: static;
	}
	.type-mega li a {
		padding: 0;
	}
	.type-mega .level-0 > li > a {
		font-weight: 700;
	}
	.type-mega .level-0 {
		display: flex;
		padding: 30px;
	}
	.type-mega .level-0 > li {
		margin-right: 60px;
		padding-right: 60px;
		border-right: 1px solid #ddd;
	}
	.type-mega .level-0 > li:last-child {
		margin-right: 0;
		padding-right: 0;
	}
	.type-mega .level-0 ul li a {
		padding: 0;
	}
	.type-mega li.menu-item-has-children a ~ ul.sub-menu {
		margin: 12px 0 0 12px;
	}
	.type-mega li.menu-item-has-children a ~ ul.sub-menu.level-1 {
		margin: 20px 0 0;
		font-size: 13px;
	}


	/* -------- type-accordion -------- */

	.type-accordion li.menu-item-has-children > .sub-menu a {
		padding: 12px 20px;
	}
	.type-accordion li.menu-item-has-children a ~ ul.sub-menu {
		background: #fff;
		display: block;
		position: absolute;
		top: 150%;
		width: 230px;
		opacity: 0;
		transition-duration: .5s;
		pointer-events: none;
	}
	.type-accordion li.menu-item-has-children a ~ ul.sub-menu:before {
		background: #777;
		display: block;
		content: " ";
		width: 100%;
		height: 2px;
	}
	.type-accordion li.menu-item-has-children:hover > .sub-menu {
		top: 100%;
		opacity: 1;
		pointer-events: auto;
	}

	/* -- .menu-item-has-children > ul -- */

	.type-accordion li li.menu-item-has-children {
		position: relative;
	}
	.type-accordion li li.menu-item-has-children a ~ ul.sub-menu {
		top: 20px;
	}
	.type-accordion li li.menu-item-has-children:hover > ul.sub-menu {
		top: -2px;
	}

	/* -------- .drawer-pc -------- */

	.drawer-menu-pc {
		position: absolute;
		top: 0;
		right: -350px;
		padding: 70px 0 0;
		font-size: 13px;
		width: 100%;
		max-width: 350px;
		height: 100vh;
	}
	.drawer-menu-pc > .in {
		position: relative;
	}
	.drawer-menu-pc .trigger-menu {
		display: block;
		position: absolute;
		top: .9em;
		right: 350px;
		left: auto;
		padding: 30px 40px;
		-webkit-transition-duration: .5s;
		-moz-transition-duration: .5s;
		transition-duration: .5s;
	}
	#site.open .drawer-menu-pc .trigger-menu {
		right: 0;
	}

	/* -- .open-check-pc -- */

	.open-check-pc:checked ~ .trigger-menu .bar-top {
		-webkit-transform: translate(50%) scale(0);
		-ms-transform: translate(50%) scale(0);
		transform: translate(50%) scale(0);
	}
	.open-check-pc:checked ~ .trigger-menu .bar-middle {
		-webkit-transform: rotate(45deg) translate(-50%, -50%);
		-ms-transform: rotate(45deg) translate(-50%, -50%);
		transform: rotate(45deg) translate(-50%, -50%);
	}
	.open-check-pc:checked ~ .trigger-menu .bar-middle:before {
		top: 37px;
		-webkit-transform: rotate(45deg) translate(-50%, -50%);
		-ms-transform: rotate(45deg) translate(-50%, -50%);
		transform: rotate(45deg) translate(-50%, 0);
	}
	.open-check-pc:checked ~ .trigger-menu .bar-middle:after {
		top: 18px;
		-webkit-transform: rotate(-45deg) translate(-50%, -50%);
		-ms-transform: rotate(-45deg) translate(-50%, -50%);
		transform: rotate(-45deg) translate(-50%, -50%);
	}
	.open-check-pc:checked ~ .trigger-menu .bar-bottom {
		-webkit-transform: translate(-50%) scale(0);
		-ms-transform: translate(-50%) scale(0);
		transform: translate(-50%) scale(0);
	}

	/* -------- .sub-navigation -------- */
	
	.sub-navigation {
		background: none;
	}

	/* -------- .sub-navigation -------- */
	
	/*  incart
	----------------------------------------*/
	
	.incart {
		position: absolute;
		top: auto;
		left: auto;
		bottom: -22px;
		right: 2em;
	}
	.incart > .in {
		display: flex;
	}
	.incart > .in a,
	.incart > .in label{
		display: block;
		height: 22px;
		margin-right: 0;
		margin-left: 20px;
		width: 29px;
	}
	.incart .welicon-shopping-cart {
		background: url(assets/images/ico_shopping.png) center center no-repeat;
		background-size: 29px;
		color: #000000;
		display: block;
		width: 100%;
		height: 100%;
	}
	.incart .welicon-ico-favorites {
		background: url(assets/images/ico_favorites.png) center center no-repeat;
		background-size: 29px;
		color: #000000;
		display: block;
		width: 100%;
		height: 100%;
	}
	.incart .welicon-ico-search {
		background: url(assets/images/ico_search.png) center center no-repeat;
		background-size: 29px;
		color: #000000;
		display: block;
		width: 100%;
		height: 100%;
	}


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

	/*	#toTop
	/* -------------------------------------------------------------------------- */

	#toTop a {
		width: 50px;
		height: 50px;
		line-height: 50px;;
		border-radius: 50%;
	}


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

	/*	Footer
	/* -------------------------------------------------------------------------- */
	
	.copyright {
		text-align: center;
	}
	
	/* -------------------------------------------------------------------------- */

	/*	Content
	/* -------------------------------------------------------------------------- */

	.site-content {
		max-width: calc( 1120px + 4em );
		margin: 60px auto 90px;
		padding: 0 2em;
	}
	.site-column2 .site-content {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.site-column2.position-left .site-content {
		flex-direction: row-reverse;
	}
	.site-column2 #content {
		width: calc( 100% - 288px );
	}
	.site-column2 .secondary {
		width: 240px;
	}

	/*  .entry-head
	----------------------------------------*/

	.entry-head {
		margin-bottom: 48px;
	}
	.entry-head .en {
		font-size: 28px;
	}
	.entry-head.title-small h1,
	.entry-head h1.be_small {
		margin-top: 12px;
		font-size: 14px;
	}
	.entry-head h1 {
		font-size: 24px;
	}

	.pagination-wrap.bottom {
		margin-top: 48px;
	}


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

	/*	front-page.php
	/* -------------------------------------------------------------------------- */
	
	/*  main-visual
	----------------------------------------*/

	.home-slide-container {
		margin-bottom: 4.5em;
		width: 100%;
	}
	.main-visual {
		display: flex;
	}
	.main-visual img {
		width: 50%;
	}

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

	/*	Coordinate
	/* -------------------------------------------------------------------------- */

	/*  Common
	----------------------------------------*/

	/* -------- .coordinate-column -------- */
	
	.coordinate-column .model-info .name {
		font-size: 15px;
	}
	.coordinate-column .model-info span {
		font-size: 13px;
	}


	#global-navigation{
		display: none;
	}
	.drawer-menu-pc .trigger-menu{
		display: none;
	}

	.global-menu_pc{
		display: flex;
		justify-content: center;
		margin-bottom: 45px;
	}
	.global-menu_pc #global-navigation{
		display: block;
	}

	.global-menu_pc .global-navigation ul.default-menu li a{
		padding: 0;
		margin: 0 24px;
	}

	.global-menu_pc .global-navigation ul.default-menu > li:hover a:after{
		width: 0;
	}




}



.column1120{
	max-width: calc(1000px + 2em) !important;
	padding: 0 1em !important;
}

.section-home .not-thumbnail{
	max-width: 1000px !important;
}

.section-home .entryfoot .more{
	position: initial !important;
	top: auto !important;
	right: auto !important;
	margin-top: 30px !important;
	text-align: center !important;
}

.section-home .entryhead h1.small{
	font-size: 17px !important;
	text-align: left !important;
	margin-top: 0 !important;
	font-family: 'Josefin Sans', sans-serif;
}

.section-home .entryfoot .more.more-right{
	position: absolute !important;
	top: 5px !important;
	right: 2em !important;
	margin-top: 0 !important;
	text-align: left !important;
}

.section-home .entryfoot .more .label {
	padding-right: 25px;
	background: url(assets/images/ico_more.svg) right center no-repeat;
}

.entry-head h1{
	font-weight: normal;
	font-size: 26px;
}
#breadcrumb{
	font-size: 11px;
}
#breadcrumb a{
	font-size: 11px;
	text-decoration: underline;
}
#post-66 .entry-head h1{
	/*display: none;*/
}

.column700{
	max-width: 700px;
	margin: 0 auto;
}

.has-small-font-size{
	font-size: 13px !important;
}

.has-normal-font-size{
	font-size: 16px !important;
}
.has-medium-font-size{
	font-size: 20px !important;
}
.profile_txt{
	max-width: 400px;
	margin: 0 auto;
}

hr{
	border-top: 1px solid #000000 !important;
}

#custom_html-2{
	background: url(https://ec.showaseito.com/wp-content/uploads/2021/04/c9664ab8db21d392bca848956df30913.jpg) center top no-repeat;
	background-size: cover;
	padding: 70px 1em;
}

#custom_html-2 figure{
	width: 133px;
}

.page-id-66 #custom_html-2{
	background: none;
}



.footer-group .in{
	max-width: calc(1000px + 2em) !important;
	padding: 0 1em !important;
	margin: 0 auto;
	background-color: transparent !important;
	padding-top: 30px !important;
}

.shop-sns{
	margin-bottom: 20px !important;
}
.shop-sns a{
	background-color: transparent !important;
}
.footer-navigation li a{
	font-size: 12px !important;
	color: #000000 !important;
}
.footer-navigation li a:after{
	background-color: transparent !important;
}

.copyright{
	background-color: transparent !important;
	font-size: 11px !important;
	max-width: calc(1000px + 4em) !important;
	padding: 0 2em 20px !important;
	margin: 0 auto;
	color: #777777 !important;
	text-align: center !important;
	font-family: 'Josefin Sans', sans-serif;
}

.nosp{
	display: none;
}


.page-id-66 .site-content{
	margin-bottom: 0 !important;
}

.concept_topbox{
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: center;
}
.concept_topbox_img{
	margin-bottom: 35px;
}
.concept_subtit{
	font-size: 11px;
	color: #777777;
	margin-bottom: 20px;
}
.concept_txt{
	font-size: 10px;
	margin-bottom: 40px;
}

.section-home.widget_mode_item_list .title-normal h1{
	font-size: 17px !important;
	text-align: left !important;
	margin-top: 0 !important;
	font-family: 'Josefin Sans', sans-serif;
		font-weight: normal;
}
.toppage_box{
	display: flex;
	justify-content: space-between;
}
.toppage_box_in{
	position: relative;
	width: 50%;
}
.toppage_box_content{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.toppage_box_tit{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 15px;
	color: #fff;
}
.toppage_box .entryfoot{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 22;
}
.toppage_box .entryfoot .more{
	display: block;
	width: 100%;
	height: 100%;
	margin-top: 0 !important;
}
.toppage_box .entryfoot a{
	display: block;
	width: 100%;
	height: 100%;
	text-indent: -9999px;
}


.top_instagram_txt{
	font-size: 11px;
	margin-bottom: 35px;
	color: #777777;
}
.top_instagram_list{
	margin: 0 -15px;
	display: flex;
	flex-wrap: wrap;
}
.top_instagram_list li{
	width: calc(100% / 3);
	padding: 0 15px;
	margin-bottom: 20px;
}
.top_instagram_list li img{
	width: 100%;
}


@media screen and (min-width: 55em) {
	
	.concept_topbox{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	.concept_topbox_img{
		margin-bottom: 0;
		width: 500px;
	}
	.concept_topbox_content{
		width: 400px;
	}
	
	.section-home .concept_topbox .entryfoot .more{
		text-align: left !important;
	}
	.concept_subtit{
		font-size: 12px;
		color: #777777;
		margin-bottom: 30px;
	}
	.concept_txt{
		font-size: 12px;
		margin-bottom: 40px;
	}
	
	.nosp{
		display: block;
	}
	.column1120{
		max-width: calc(1000px + 4em) !important;
		padding: 0 2em !important;
	}
	#custom_html-2{
		background: url(https://ec.showaseito.com/wp-content/uploads/2021/04/c9664ab8db21d392bca848956df30913.jpg) center top no-repeat;
		background-size: cover;
		padding: 80px 0;
	}
	
	.footer-group .in{
		max-width: calc(1000px + 4em) !important;
		padding: 0 2em !important;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		background-color: transparent !important;
		padding-top: 40px !important;
	}

	.shop-sns{
		margin-bottom: 14px !important;
	}
	.shop-sns a{
		background-color: transparent !important;
	}
	.footer-navigation li a{
		font-size: 12px !important;
		color: #000000 !important;
	}
	.footer-navigation li a:after{
		background-color: transparent !important;
	}
	
	.copyright{
		background-color: transparent !important;
		font-size: 11px !important;
		max-width: calc(1000px + 4em) !important;
		padding: 0 2em 20px !important;
		margin: 0 auto;
		color: #777777 !important;
		text-align: left !important;
		font-family: 'Josefin Sans', sans-serif;
	}
	
	.section-home .entryhead h1.small{
		font-size: 23px !important;
		text-align: left !important;
		margin-top: 0 !important;
		font-family: 'Josefin Sans', sans-serif;
	}
	
	.section-home.widget_mode_item_list .title-normal h1{
		font-size: 23px !important;
		text-align: left !important;
		margin-top: 0 !important;
		font-family: 'Josefin Sans', sans-serif;
		font-weight: normal;
	}
	
	
	.toppage_box{
		display: flex;
		justify-content: space-between;
	}
	.toppage_box_in{
		position: relative;
		width: 48%;
	}
	.toppage_box_content{
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.toppage_box_tit{
		font-family: 'Josefin Sans', sans-serif;
		font-size: 21px;
		color: #fff;
	}
	.toppage_box .entryfoot{
		position: initial;
		left: auto;
		top: auto;
		width: auto;
		height: auto;
		z-index: 22;
	}
	.toppage_box .entryfoot .more{
		display: block;
		width: auto;
		height: auto;
		margin-top: 16x !important;
	}
	.toppage_box .entryfoot a{
		display: block;
		width: auto;
		height: auto;
		text-indent: 0;
		color: #fff;
		font-size: 9px;
		font-family: 'Josefin Sans', sans-serif;
		border-color: #fff !important;
	}
	
	.section-home .toppage_box .entryfoot .more .label{
		background: url(assets/images/ico_more_white.svg) right center no-repeat;
	}
	
	
	.top_instagram_txt{
		font-size: 12px;
		margin-bottom: 50px;
		color: #777777;
	}
	.top_instagram_list{
		margin: 0;
		display: flex;
		flex-wrap: wrap;
	}
	.top_instagram_list li{
		width: calc(100% / 4);
		padding: 0 30px;
		margin-bottom: 35px;
	}
	.top_instagram_list li img{
		width: 100%;
	}
	
}


.wpcf7{
	margin-top: 25px;
}

.wpcf7 label{
	font-size: 14px;
	line-height: 18px;
}
.wpcf7 label span{
	font-size: 10px;
	margin-left: 10px;
	color: #DE5D4F;
}

.wpcf7 label span.wpcf7-form-control-wrap{
	margin-left: 0;
}

.wpcf7 .ajax-loader{
	display: none;
}

.wpcf7 p + p{
	margin-top: 20px;
}

.wpcf7 p.formsubmit{
	text-align: center;
}
.wpcf7 .wpcf7-submit{
	width: 220px;
	height: 50px;
	color: #fff;
	font-size: 14px;
	background: #777777;
}


@media screen and (min-width: 55em) {
	.wpcf7{
		margin-top: 45px;
	}
	
	.wpcf7 p + p{
		margin-top: 40px;
	}
}