@charset "UTF-8";
/*
Theme Name: akiba_x_test
Description: akiba_x_test original templete.
Author: beq.co.jp
Version: 1.0.0
*/

/*********************************************************************
*  settings
*********************************************************************/
:root {
	--black: #000;
	--white: #fff;
	--gray1: #f0f0f0;
	--gray2: #e8e7e8;
	--gray3: #797979;
	--gray4: #848484;
	--gray5: #c6c6c6;
	--gray6: #5f5f5f;
	--gray7: #cecdcd;
	--gray8: #979797;
	--gray9: #949494;
	--gray10: #686868;
	--gray11: #f4f4f4;
	--gray12: #c0c0c0;
	--red: #e60012;
	--red2: #e60011;
	--red3: #a0010d;
	--pink: #ec3f4d;
	--yellow: #e7a700;
	--blue: #54a8e5;
	--light-blue: #90c6ee;
}


/*********************************************************************
*  Base
*********************************************************************/
html {
	background: var(--white);
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 62.5%;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}

img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	pointer-events: none;
}

ol, ul { list-style: none }

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption, th {
	text-align: left;
	font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: 400;
}

a {
	color: inherit;
	text-decoration: none;
	transition: opacity .15s ease-out;
}
a:hover { opacity: 0.8 }

time { white-space: nowrap }

q:before, q:after { content: "" }

::before, ::after { box-sizing: border-box }

:focus { outline: none }

::placeholder { color: var(--gray6) }



input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px var(--white) inset;
	-moz-box-shadow: 0 0 0 1000px var(--white) inset;
	box-shadow: 0 0 0 1000px var(--white) inset;
}

input:read-only, textarea:read-only { background-color: var(--gray11) !important }

input, select, textarea, button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: 0;
	padding: 0;
	margin: 0;
	background : none;
	border: none;
	border-radius: 0;
	font-family: inherit;
	box-sizing: border-box;
}


input { -webkit-tap-highlight-color: rgba(0, 0, 0, 0) }
input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=reset]):not([type=file]), textarea, select {
	width: min(100%, 308px);
	height: 35px;
	padding: 0 .5em;
	border: 1px solid var(--gray12);
	background: var(--white);
	color: var(--gray6);
	font-size: 1.6rem;
	box-sizing: border-box;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button {
		-webkit-appearance: none;
		margin: 0;
}
input[type=submit],
input[type=button]
input[type=reset], {
	-webkit-box-sizing: border-box;
	-webkit-appearance: button;
	appearance: button;
	cursor: pointer;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration { display: none }
input[type=submit]:focus,
input[type=button]:focus { outline-offset: -2px }

button {
	display: block;
	width: 100%;
	cursor: pointer;
}

textarea {
	resize: vertical;
	width: 100%;
	min-height: 120px;
	color: var(--gray6);
}

select {
	padding-right: 30px;
	background:
		url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 35"><path fill="%235f5f5f" d="M6,9.7h18l-9,15.6L6,9.7z"/></svg>')
		no-repeat center right / contain;
}


/*********************************************************************
*  Main css
*********************************************************************/
#wrap { overflow: hidden }

.inner {
	width: min(1100px, 100%);
	margin-right: auto;
	margin-left: auto;
}
.inner_s {
	width: min(960px, 100%);
	margin-right: auto;
	margin-left: auto;
}
.inner_s2 {
	width: min(930px, 100%);
	margin-right: auto;
	margin-left: auto;
}

.error-404 {
	padding: 1em 0 1.2em;
	font-size: 10rem;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
}
@media screen and (max-width: 767px) {
	.error-404 { font-size: 5rem }
}

/*********************************************************************
*  Common Parts
*********************************************************************/
/**
 * Blocks
 */
.block { display: block }
.inline_block { display: inline-block }

/**
 * Fonts
 */
.black { color: var(--black) }
.white { color: var(--white) }

.font-hide { font-family: 'Hind', sans-serif }
.font-vollkorn { font-family: 'Vollkorn', serif }

/**
 * Title
 */
.content__title {
	position: relative;
	height: 52px;
	padding: 8px 22px;
	margin-bottom: 24px;
	background-color: var(--gray6);
	color: var(--white);
	overflow: hidden;
}
.content__title::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 10px;
	height: 4px;
	background-color: var(--white);
}
.content__title strong {
	display: block;
	font-size: 1.8rem;
	font-weight: 900;
	line-height: 2;
}
.content__title__sub {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	padding-right: 22px;
	padding-left: 64px;
	background:
		repeating-linear-gradient(-45deg, var(--gray6) 0px, var(--gray6) 3px, var(--gray8) 3px, var(--gray8) 5px)
		no-repeat top left / cover;
}
.content__title__sub::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	border: 26px solid transparent;
	border-top-color: var(--gray6);
	border-left-color: var(--gray6);
}
.content__title__sub span {
	display: block;
	height: 1.5em;
	padding-right: 1.6em;
	padding-left: 1.6em;
	border-radius: 5px;
	background-color: var(--gray6);
	color: var(--white);
	font-size: 1rem;
	line-height: 1.6;
}
@media screen and (max-width: 767px) {
	.content__title strong {
		font-size: 1.6rem;
		line-height: 2.25;
	}
	.content__title__sub {
		padding-right: 8px;
		padding-left: 44px;
	}
	.content__title__sub span {
		padding-right: 1em;
		padding-left: 1em;
	}
}

/**
 * The presence or absence of display is determined.
 */

/* Aspect ratio */
@media screen and (orientation: landscape) {
	.portrait { display: none }
}
@media screen and (orientation: portrait) {
	.landscape { display: none }
}

/* iPad */
@media screen and (min-width: 768px) {
	.less768 { display: none }
}
@media screen and (max-width: 767px) {
	.over768 { display: none }
}

/* iPad Pro */
@media screen and (min-width: 1024px) {
	.less1024 { display: none }
}
@media screen and (max-width: 1023px) {
	.over1024 { display: none }
}

/* laptop */
@media screen and (min-width: 1280px) {
	.less1280 { display: none }
}
@media screen and (max-width: 1279px) {
	.over1280 { display: none }
}

/*********************************************************************
*  flex box
*********************************************************************/
.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}

/**
 * justify-content
 */
.f_between {
	-webkit-box-pack:justify;
	-webkit-flex-pack:justify;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
.f_around {
	-webkit-flex-pack: distribute;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}
.f_start {
	-webkit-box-pack:start;
	-webkit-flex-pack:start;
	-webkit-justify-content:flex-start;
	justify-content:flex-start;
}
.f_end {
	-webkit-box-pack:end;
	-webkit-flex-pack:end;
	-webkit-justify-content:flex-end;
	justify-content:flex-end;
}
.f_center {
	-webkit-box-pack:center;
	-webkit-flex-pack:center;
	-webkit-justify-content:center;
	justify-content:center;
}

/**
 * align-items
 */
.f_items_start {
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.f_items_end {
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.f_items_center {
	-webkit-box-align: center;
	align-items: center;
}
.f_items_baseline {
	-webkit-align-items: baseline;
	align-items: baseline;
}
.f_items_stretch {
	-webkit-align-items: stretch;
	align-items: stretch;
}

/**
 * flex-wrap
 */
.f_wrap {
	-webkit-box-lines:multiple;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
}

/**
 * flex-direction
 */
.f_reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
}
.f_column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}
.f_column_reverse {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	flex-direction: column-reverse;
}

/**
 * flex-grow
 */
.f_grow {
	-webkit-box-flex:1;
	flex-grow:1;
}


/*********************************************************************
*  header
*********************************************************************/
#header {
	position: relative;
	z-index: 9999;
}
.header__line {
	background-color: var(--gray1);
	border-bottom: var(--gray2);
	padding-right: min(4%, 15px);
	padding-left: min(4%, 15px);
}
.header__line__content {
	padding-top: 10px;
	padding-bottom: 10px;
	min-height: 41px;
}

.header__line__description {
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.5em;
}

.header__line__nav__item a {
	position: relative;
	display: block;
	padding-left: 1em;
	margin-left: 18px;
	background: linear-gradient(var(--gray4), var(--gray4)) no-repeat center left / 9px 9px;
	color: var(--gray4);
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.5;
	white-space: nowrap;
}
.header__line__nav__item a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 3px;
	transform: translateY(-50%) rotate(45deg);
	width: 3.5px;
	height: 3.5px;
	border-top: 1px solid var(--white);
	border-right: 1px solid var(--white);
}
.header__line__nav__item a::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 1.5px;
	transform: translateY(-50%);
	width: 6px;
	height: 1px;
	background-color: var(--white);
}
@media screen and (max-width: 767px) {
	.header__line__nav__list {
		display: block;
	}
}

.header__main {
	padding-right: min(4%, 15px);
	padding-left: min(4%, 15px);
}
.header__content {
	position: relative;
	padding-top: 15px;
	padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
	.header__content {
		display: block;
	}
}

@media screen and (max-width: 767px) {
	.logo { max-width: calc(100% - 50px) }
}

.menu-btn { display: none }
.header__nav__list {
	padding-top: 20px;
	padding-bottom: 20px;
}
.header__nav__list .nav__item {
	position: relative;
	display: block;
	padding-left: 28px;
}
.header__nav__list .nav__item:not(:last-child) {
	padding-right: 28px;
	margin-right: 2px;
}
.header__nav__list .nav__item:not(:last-child)::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
	width: 2px;
	height: 30px;
	background-color: var(--gray5);
}
.header__nav__list .nav__item a {
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.7;
}
.header__nav__list .nav__item a strong { display: block }
.header__nav__list .nav__item a .nav__item__description {
	display: block;
	color: var(--gray3);
	font-size: 1.0rem;
	font-weight: 400;
}
@media screen and (max-width: 767px) {
	.menu-btn {
		position: absolute;
		bottom: 15px;
		right: 0;
		display: block;
		width: 36px;
		height: 36px;
	}
	.menu-btn span {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		display: block;
		width: 100%;
		height: 4px;
		background-color: var(--gray4);
		transition: all .15s ease-out;
	}
	.menu-btn span:nth-child(1) { top: calc(50% - 10px) }
	.menu-btn span:nth-child(2) { top: calc(50% - 2px) }
	.menu-btn span:nth-child(3) { top: calc(50% + 6px) }
	.menu-btn.active span:nth-child(1) {
		top: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.menu-btn.active span:nth-child(2) { opacity: 0 }
	.menu-btn.active span:nth-child(3) {
		top: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	.header__nav {
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		width: 100vw;
		background-color: rgba(255, 255, 255, .9);
		opacity: 0;
		z-index: 999;
		pointer-events: none;
		transition: all .15s ease-out;
	}
	.menu-btn.active + .header__nav {
		opacity: 1;
		pointer-events: visible;
	}
	.header__nav__list {
		display: block;
		padding-bottom: 30px;
	}
	.header__nav__list .nav__item { padding: 10px 30px }
	.header__nav__list .nav__item:not(:last-child) {
		padding-right: 30px;
		margin-right: 0;
		margin-bottom: 2px;
	}
	.header__nav__list .nav__item:last-child { padding-right: 30px }
	.header__nav__list .nav__item:not(:last-child)::before {
		top: 100%;
		left: 30px;
		transform: none;
		width: 50%;
		height: 2px;
	}
}


/*********************************************************************
*  footer
*********************************************************************/
.footer {
	position: relative;
	background-color: var(--gray11);
}
.footer-content { padding: 14px min(4%, 15px) 12px }
@media screen and (max-width: 767px) {
	.footer-content {
		display: block;
		padding: 20px min(4%, 15px) 20px;
	}
}

.footer-description { min-width: 280px }
.footer-logo {
	width: 260px;
	margin-bottom: 10px;
}
.footer-info {
	color: var(--gray6);
	font-size: 1.2rem;
	line-height: 1.5;
}
.footer__nav__list .nav__item {
	position: relative;
	margin-right: 1.4em;
	font-size: 1.4rem;
}
.footer__nav__list .nav__item:last-child { margin-right: 0 }
.footer__nav__list .nav__item:not(:last-child)::before {
	content: "|";
	position: absolute;
	top: 50%;
	left: calc(100% + .6em);
	transform: translateY(-50%);
}
.footer__nav__list .nav__item a {
	color: var(--gray6);
	line-height: 1.5em;
}
@media screen and (max-width: 767px) {
	.footer-description { margin-bottom: 20px }
}

.copyright {
	padding: 15px min(4%, 15px) 32px;
	background-color: var(--gray6);
	text-align: center;
}
.copyright small {
	color: var(--white);
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: .05em;
}
@media screen and (max-width: 767px) {
	.copyright small {
		font-size: 1.0rem;
	}
}

.return-top {
	position: absolute;
	bottom: calc(100% - 6px);
	right: 10%;
	display: block;
	width: 80px;
	height: 40px;
	border-radius: 40px 40px 0 0;
	background:
		url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 40"><path fill="%235f5f5f" d="M29,23.8v3.8l11.5-11.2L52,27.6v-3.8L40.5,12.6L29,23.8z"/></svg>')
		var(--gray11) no-repeat center center / contain;
	z-index: 10;
}
.return-top:hover { opacity: 1 }
.return-top::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

/*********************************************************************
*  Top
*********************************************************************/
.top-slider__area {
	position: relative;
	width: 100%;
	height: calc(min(450px, calc(100vw * (450 / 1100))) + 8px);
	border-top: 4px solid var(--red);
	border-bottom: 4px solid var(--red);
	background-color: var(--black);
}
.top-slider__container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.top-slider__item {
	position: relative;
	width: min(1100px, 100vw);
	opacity: .5;
	transition: opacity .15s ease-out;
}
.top-slider__item.slick-active { opacity: 1 }
.top-slider__item a {
	display: block;
	width: 100%;
}
.top-slider__item img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}
@media screen and (max-width: 767px) {
	.top-slider__area {
		height: calc(min(450px, calc(100vw * (450 / 1100))) + 4px);
		border-top-width: 2px;
		border-bottom-width: 2px;
	}
}

.top-banner__area {
	position: relative;
	padding-right: min(4%, 15px);
	padding-left: min(4%, 15px);
	margin-top: calc(-1 * min(7.3%, 80px));
	margin-bottom: 20px;
	z-index: 10;
}
.top-banner__item {
	width: min(394px, 32%);
	margin-right: 5px;
	margin-left: 5px;
}
@media screen and (max-width: 767px) {
	.top-banner__area { margin-top: 4% }
}

.top-main { padding: 37px min(4%, 15px) 300px }
.top-main__left { width: calc(100% - 300px) }
.top-main__right { width: 260px }
@media screen and (max-width: 767px) {
	.top-main__container { display: block }
	.top-main { padding: 40px min(4%, 15px) 120px }
	.top-main__left {
		width: 100%;
		margin-bottom: 60px;
	}
	.top-main__right { width: 100% }
}

.top-right__content { margin-bottom: 22px }
.top-right__content form button { transition: opacity .15s ease-out }
.top-right__content li:not(.search) form:hover button { opacity: .8 }
.top-right__title {
	position: relative;
	height: 1.875em;
	padding-right: 1em;
	padding-left: 1em;
	margin-bottom: 1em;
	border-radius: .9375em;
	background-color: var(--gray6);
	color: var(--white);
	font-size: 1.6rem;
	line-height: 1.875;
	white-space: nowrap;
	overflow: hidden;
}
.top-right__title strong { font-weight: 500 }
.top-right__title span { font-size: .875em }
.top-right__title::before {
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	left: 0;
	width: .625em;
	height: 4px;
	background-color: var(--white);
}


.top-right__item:not(:last-child) { margin-bottom: 5px }

.top-right__item.search {
	padding-bottom: 17px;
	background:
		repeating-linear-gradient(-45deg, var(--red2) 0px, var(--red2) 3px, var(--pink) 3px, var(--pink) 5px)
		no-repeat top left / cover;
}
.top-search__title {
	padding: 12px 0 7px;
	background-color: var(--red2);
	color: var(--white);
	white-space: nowrap;
	text-align: center;
}
.top-search__title strong {
	display: block;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
}
.top-search__title span {
	display: block;
	font-size: 1rem;
	line-height: 1.7;
}
.top-search__description {
	padding: 14px 0 5px;
	color: var(--white);
	font-size: 1.4rem;
	line-height: 1.5;
	text-align: center;
	white-space: nowrap;
}
.top-search__input {
	height: 35px;
	padding: 1px;
	margin-right: 16px;
	margin-left: 16px;
	background-color: var(--white);
}
.top-search__input input[type=search] {
	width: calc(100% - 38px) !important;
	height: 100% !important;
	border: none !important;
}
.top-search__input button {
	width: 38px;
	height: 100%;
	background:
		url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35 35"><path fill="%23FFF" d="M26.5,24l-4.4-4.4c-0.6,1-1.5,1.9-2.5,2.5l4.4,4.4c0.7,0.7,1.8,0.7,2.5,0C27.2,25.8,27.2,24.7,26.5,24zM22.2,15.1c0-3.9-3.2-7.1-7.1-7.1C11.2,8,8,11.2,8,15.1c0,3.9,3.2,7.1,7.1,7.1C19.1,22.2,22.2,19.1,22.2,15.1z M15.1,20.5c-2.9,0-5.3-2.4-5.3-5.3c0-2.9,2.4-5.3,5.3-5.3c2.9,0,5.3,2.4,5.3,5.3C20.5,18.1,18.1,20.5,15.1,20.5z M11,15.1h1.2c0-1.6,1.3-3,3-3V11C12.8,11,11,12.8,11,15.1z"/></svg>')
		var(--gray6) no-repeat center center / contain;
	text-indent: -9999px;
}
.top-right__bnr__link {
	position: relative;
	display: block;
}
.top-right__bnr__link time {
	position: absolute;
	bottom: 2px;
	left: 0;
	display: block;
	width: 100%;
	height: 23px;
	color: var(--white);
	font-size: 1.2rem;
	line-height: 1.92;
	text-align: center;
}
.widget-mini-bnr {
	position: relative;
	width: 100%;
	height: 80px;
	margin-bottom: 6px;
	background-repeat: no-repeat;
	background-position:
		top left,
		bottom right,
		top left;
	background-size:
		72px 72px,
		60px 60px,
		100% 100%;
	border-width: 1px;
	border-style: solid;
	box-sizing: border-box;
	overflow: hidden;
}
.widget-mini-bnr:last-child { margin-bottom: 0 }
.widget-mini-bnr.color-y {
	border-color: #f5c01f;
	background-color: #e7a700;
	background-image:
		linear-gradient(135deg, #e7a700 0%, #e7a700 50%, rgba(231, 167, 0, 0) 50%, rgba(231, 167, 0, 0) 100%),
		linear-gradient(-45deg, #e7a700 0%, #e7a700 50%, rgba(231, 167, 0, 0) 50%, rgba(231, 167, 0, 0) 100%),
		repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 0) 3px, rgba(255, 255, 255, .25) 3px, rgba(255, 255, 255, .25) 5px);
}
.widget-mini-bnr.color-b {
	border-color: #009edd;
	background-color: #009edd;
	background-image:
		linear-gradient(135deg, #009edd 0%, #009edd 50%, rgba(0, 158, 221, 0) 50%, rgba(0, 158, 221, 0) 100%),
		linear-gradient(-45deg, #009edd 0%, #009edd 50%, rgba(0, 158, 221, 0) 50%, rgba(0, 158, 221, 0) 100%),
		repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 0) 3px, rgba(255, 255, 255, .25) 3px, rgba(255, 255, 255, .25) 5px);
}
.widget-mini-bnr .bnr__link {
	display: block;
	text-align: left;
	transition: all .15s ease-out;
}
.widget-mini-bnr .bnr__link:hover { opacity: .8 }
.widget-mini-bnr .bnr__image {
	position: absolute;
	top: 0;
	right: 0;
	width: auto;
	height: 100%;
}
.widget-mini-bnr .bnr__image img {
	width: auto !important;
	height: auto !important;
	max-height: 100%;
}
.widget-mini-bnr .bnr__name__box {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	width: 100%;
	height: 59px;
	z-index: 10;
}
.widget-mini-bnr .bnr__name {
	width: 100%;
	padding-right: .875em;
	padding-left: .875em;
	margin: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	line-height: 19px;
	box-sizing: border-box;
}
.widget-mini-bnr .bnr__update {
	position: relative;
	width: 100%;
	height: 19px;
}
.widget-mini-bnr .bnr__update::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: multiply;
}
.widget-mini-bnr.color-y .bnr__update::before { background-image: linear-gradient(rgba(231, 167, 0, .75), rgba(231, 167, 0, .75)) }
.widget-mini-bnr.color-b .bnr__update::before { background-image: linear-gradient(rgba(0, 158, 221, .75), rgba(0, 158, 221, .75)) }
.widget-mini-bnr .bnr__update p {
	position: relative;
	padding-right: 14px;
	padding-left: 14px;
	margin: 0;
	color: #fff;
	font-size: 12px;
	line-height: 19px;
	box-sizing: border-box;
	z-index: 10;
}
.widget-text__list:not(:last-child) { margin-bottom: 16px }
.widget-text__list .text__link {
	position: relative;
	display: block;
	padding-left: 20px;
	color: var(--gray6);
	text-align: left;
}
.widget-text__list .text__link::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 10px;
	height: 2px;
	background-color: var(--gray7);
}
.widget-text__list .text__name {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.375;
}
.widget-text__list .text__update {
	font-size: 1.2rem;
	line-height: 1;
}
@media screen and (max-width: 767px) {
	.top-right__list {
		padding-right: 10px;
		padding-left: 10px;
	}
	.top-right__bnr__link img {
		margin-right: auto;
		margin-left: auto;
	}
}


.top-under__bnr__area { padding: 50px 0 50px }
.top-under__bnr__link__list {
	width: min(100%, 670px);
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 24px;
}
.top-under__bnr__link__item { width: calc((100% - 10px) / 2) }
.top-under__bnr {
	width: min(100%, 700px);
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width: 767px) {
	.top-under__bnr__link__list { display: block }
	.top-under__bnr__link__item { width: 100% }
}

/*********************************************************************
*  List item
*********************************************************************/
.list-item__title__container {
	padding-right: min(4%, 15px);
	padding-left: min(4%, 15px);
	background-color: var(--red);
	margin-bottom: 32px;
}
.list-item__title {
	padding-top: .5em;
	padding-bottom: .5em;
	color: var(--white);
	font-size: 2.8rem;
	font-weight: 900;
	line-height: 1;
}
.list-item__menu__item {
	position: relative;
	padding: 20px;
	margin-right: 1px;
	cursor: pointer;
}
.list-item__menu__item:first-child { margin-left: -20px }
.list-item__menu__item:last-child { margin-right: -20px }
.list-item__menu__item:not(:last-child)::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
	width: 1px;
	height: 15px;
	background-color: var(--white);
}
.list-item__menu__name {
	color: var(--white);
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
}
@media screen and (max-width: 767px) {
	.list-item__title { font-size: 2.4rem }
	.list-item__menu__item { padding: 10px 6px }
	.list-item__menu__item:first-child { margin-left: -6px }
	.list-item__menu__item:last-child { margin-right: -6px }
	.list-item__menu__name { font-size: 1.2rem }
}


.list-item__menu__subList {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 16px;
	padding-bottom: 16px;
	background-color: rgba(0, 0, 0, .75);
	opacity: 0;
	pointer-events: none;
	z-index: 10;
}
.list-item__menu__item:last-child .list-item__menu__subList {
	left: auto;
	right: 0;
	transform: none;
}
.list-item__menu__item:hover .list-item__menu__subList {
	opacity: 1;
	pointer-events: visible;
	transition: opacity .15s ease-out;
}
.list-item__menu__link {
	display: block;
	padding-right: 20px;
	padding-left: 20px;
	color: var(--white);
	transition: all .15s ease-out;
}
.list-item__menu__link:hover {
	background-color: rgba(255, 255, 255, .75);
	color: var(--black);
}
.list-item__menu__subName {
	font-size: 1.4rem;
	line-height: 2;
	white-space: nowrap;
}
@media screen and (max-width: 799px) {
	.list-item__menu__subList {
		left: 0;
		transform: none;
	}
	.list-item__menu__item:last-child .list-item__menu__subList {
		left: 0;
		right: auto;
	}
}
@media screen and (max-width: 767px) {
	.list-item__menu__item:last-child .list-item__menu__subList {
		left: 50%;
		right: auto;
		transform: translateX(-50%);
	}
}


.list-item__main__container {
	padding-right: min(4%, 15px);
	padding-left: min(4%, 15px);
	padding-bottom: 130px;
}
.list-item__description {
	margin-bottom: 32px;
	color: var(--gray6);
	font-size: 1.3rem;
	line-height: 1.54;
}

.list-item__content__title {
	position: relative;
	height: 52px;
	padding: 8px 22px;
	margin-bottom: 24px;
	background-color: var(--yellow);
	color: var(--white);
	font-size: 1.8rem;
	font-weight: 900;
	line-height: 2;
}
.list-item__content__title::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 10px;
	height: 4px;
	background-color: var(--white);
}

.list-item__search__box {
	padding: 22px 15px;
	margin-bottom: 32px;
	border: 2px solid var(--gray9);
	border-radius: 10px;
}
.list-item__search__label {
	position: relative;
	display: block;
	padding-left: 30px;
	margin-right: 14px;
	color: var(--gray6);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}
.list-item__search__label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-color: var(--gray6);
}
.list-item__search__input {
	width: 100%;
	max-width: 318px;
	border: 2px solid var(--red3);
	border-radius: 4px;
	overflow: hidden;
}
.list-item__search__input input[type=search] {
	width: calc(100% - 43px) !important;
	height: 32px !important;
	padding-right: 15px !important;
	padding-left: 15px !important;
	border: none !important;
	font-size: 1.8rem !important;
	font-weight: 300;
}
.list-item__search__input input[type=search]::placeholder { color: var(--gray10) }
.list-item__search__input button {
	width: 43px;
	height: 32px;
	background: var(--red3) url(./images/icon_search.png) no-repeat center center / 22px;
	text-indent: -9999px;
}
@media screen and (max-width: 767px) {
	.list-item__search__label { margin-bottom: 16px }
	.list-item__search__box__inner { display: block }
}

.list-item__result__item:not(:last-child) { margin-bottom: 55px }
.list-item__result__title {
	position: relative;
	height: 30px;
	padding-right: 1.125em;
	padding-left: 1em;
	margin-bottom: 13px;
	background-color: var(--gray9);
	border-radius: 15px;
	color: var(--white);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	overflow: hidden;
}
.list-item__result__title::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 10px;
	height: 4px;
	background-color: var(--white);
}
.list-item__result__title time {
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1;
}
.list-item__result__table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}
.list-item__result__table tr { border-bottom: 1px solid var(--gray9) }
.list-item__result__table tbody tr:nth-child(odd) { background-color: var(--gray11) }
.list-item__result__table th,
.list-item__result__table td {
	padding-top: 10px;
	padding-bottom: 10px;
	min-height: 46px;
	text-align: left;
}
.list-item__result__table th:first-child,
.list-item__result__table td:first-child { padding-left: 40px }
.list-item__result__table th:last-child,
.list-item__result__table td:last-child { padding-right: 40px }
.list-item__result__table th {
	color: var(--gray6);
	font-size: 1.4rem;
	font-weight: 700;
	white-space: nowrap;
}
.list-item__result__table th.list-item__result__maker {
	width: 20em;
	padding-right: 20px;
}
.list-item__result__table th.list-item__result__price { width: 10em }
.list-item__result__table td {
	color: var(--gray6);
	font-size: 1.6rem;
	font-weight: 500;
}
.list-item__result__table td.list-item__result__maker { padding-right: 20px }
.list-item__result__table td.list-item__result__price {
	text-align: right;
	white-space: nowrap;
}
@media screen and (max-width: 767px) {
	.list-item__result__table th { text-align: center }
	.list-item__result__table th:first-child,
	.list-item__result__table td:first-child { padding-left: 10px }
	.list-item__result__table th:last-child,
	.list-item__result__table td:last-child { padding-right: 10px }
	.list-item__result__table th.list-item__result__maker {
		width: auto;
		padding-right: 10px;
	}
	.list-item__result__table th.list-item__result__price { width: auto }
	.list-item__result__table td { font-size: 1.2rem }
}

.list-item__result__product span {
	font-size: 1.2rem;
	font-weight: 300;
	letter-spacing: .1em;
}

.list-item__no-much {
	padding-top: 2em;
	padding-bottom: 2em;
	color: var(--gray6);
	font-size: 1.6rem;
	line-height: 2;
	text-align: center;
}


/*********************************************************************
*  Pager
*********************************************************************/
.pager { padding: 40px 5px 20px }
.page-prev, .page-next {
	width: 24px;
	height: 24px;
	margin: 10px;
	background-color: var(--gray6);
}
.page-prev.no-link, .page-next.no-link { background-color: transparent }
.page-prev a, .page-next a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
.page-prev:not(.no-link) a::before, .page-next:not(.no-link) a::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	border: 2px solid transparent;
}
.page-prev:not(.no-link) a::before {
	left: 9px;
	border-bottom-color: var(--white);
	border-left-color: var(--white);
}
.page-next:not(.no-link) a::before {
	right: 9px;
	border-top-color: var(--white);
	border-right-color: var(--white);
}

.page-number {
	padding-right: 10px;
	padding-left: 10px;
}
.num-item {
	width: 24px;
	height: 24px;
	margin: 10px 5px;
}
.num-item span, .num-item a {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: center;
}
.num-item span {
	background-color: var(--gray6);
	color: var(--white);
	font-weight: 500;
	pointer-events: none;
}
.num-item a {
	color: var(--gray6);
	transition: all .15s ease-out;
}
.num-item a:hover {
	color: var(--white);
	background-color: var(--gray6);
}




/*********************************************************************
*  Stores
*********************************************************************/
.store__container {
	padding-right: min(4%, 15px);
	padding-left: min(4%, 15px);
	padding-bottom: 40px;
}
.store__container.store-top { padding-bottom: 32px }
.store__area {
	border: 1px solid var(--gray1);
}
.store__container.store-top .store__area {
	border: none;
	filter: drop-shadow( 0 0 3px rgba(0, 0, 0, .5) );
}
.store__caption {
	width: min(228px, 20.73%);
	min-width: 6em;
	background-color: var(--red);
	color: var(--white);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
}

.store__list { width: calc(100% - min(228px, 20.73%)) }
.store__item {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 25px 20px 20px;
	background-color: var(--white);
	text-align: center;
}
.store__item:first-child {
	background:
		repeating-linear-gradient(-45deg, rgba(220, 220, 220, .3) 0px, rgba(220, 220, 220, .3) 8px, var(--white) 8px, var(--white) 16px)
		var(--white) no-repeat top left / 100% 100%;
}
.store__item:not(:last-child)::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 2px;
	height: 17px;
	background-color: var(--red);
}
.store__name {
	color: var(--red);
	font-size: 2.8rem;
	font-weight: 900;
	line-height: 1;
}
.store__name__en {
	color: var(--gray6);
	font-size: 1.2rem;
	line-height: 1.2;
}
.store__tel {
	margin-bottom: 8px;
	color: var(--gray6);
	font-size: 2.8rem;
	line-height: 1;
}
.store__tel span {
	display: inline-block;
	padding-left: 1em;
	background: url(./images/icon_tel.png) no-repeat top left / 21px;
}
.store__link {
	width: 112px;
	height: 20px;
	margin-right: auto;
	margin-left: auto;
	background-color: var(--gray6);
}
.store__link a {
	position: relative;
	display: block;
	padding-left: 20px;
	color: var(--white);
	font-size: 1.0rem;
	line-height: 2;
}
.store__link a::before {
	content: "";
	position: absolute;
	top: -3px;
	left: 3px;
	width: 18px;
	height: 29px;
	background: url(./images/icon_pin.png) no-repeat center center / contain;
}
@media screen and (max-width: 1023px) {
	.store__area { display: block }
	.store__caption {
		width: 100%;
		height: auto;
		min-height: 3em;
		padding: 1.5em 1em;
	}
	.store__list { width: 100% }
}
@media screen and (max-width: 767px) {
	.store__list { display: block }
	.store__item:not(:last-child)::before {
		top: auto;
		bottom: 0;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		width: 18px;
		height: 2px;
	}
}

/**
 * Store page
 */
.store-header {
	width: 100%;
	height: 200px;
	margin-bottom: 34px;
	background-color: var(--red);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
h1.store-title {
	padding-top: 80px;
	color: var(--white);
	font-size: 3.8rem;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-shadow:
		0 0 5px rgba(0, 0, 0, .5),
		0 0 8px rgba(0, 0, 0, .5);
	white-space: nowrap;
}

.store-container {
	padding-top: 35px;
	padding-bottom: 75px;
}
h2.store-title {
	padding: 18px min(4%, 15px);
	padding-top: 18px;
	padding-bottom: 18px;
	background-color: var(--red);
	color: var(--white);
}
h2.store-title strong {
	font-size: 2.8rem;
	font-weight: 900;
	line-height: 1.5;
}
h2.store-title span {
	font-size: 1.2rem;
	line-height: 1;
}
.store-content { padding: 32px min(4%, 15px) 46px }
.store-text {
	width: 50%;
	color: var(--gray6);
}
.store-catch {
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.5;
}
.store-comment {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
}
.store-image { width: calc(50% - 30px) }
@media screen and (max-width: 767px) {
	.store-description { display: block }
	.store-text {
		width: 100%;
		margin-bottom: 24px;
	}
	.store-image { width: 100% }
}

.store-data {
	padding-right: min(4%, 15px);
	padding-left: min(4%, 15px);
	background-color: var(--gray11);
	border-top: 3px solid var(--gray6);
}
.store-data__container { position: relative }
h3.store-title {
	position: absolute;
	bottom: 100%;
	height: 30px;
	padding-right: 1em;
	padding-left: 1em;
	border-radius: 18px 18px 0 0;
	background-color: var(--gray6);
	color: var(--white);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 2.1;
	white-space: nowrap;
}
.store-data__table__box {
	width: 48%;
	padding-top: 10px;
	padding-bottom: 10px;
}
.store-data__table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.store-data__table tr:not(:last-child) { border-bottom: 1px solid var(--gray9) }
.store-data__table th { width: 120px }
.store-data__table th, .store-data__table td {
	padding-top: 12px;
	padding-bottom: 12px;
	vertical-align: top;
	color: var(--gray6);
}
.store-data__table td {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.285714285714286;
}
.store-data__th {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.125;
}
.store-data__th__en { display: block }
.store-data__map {
	width: calc(50% - 30px);
	background-color: var(--gray6);
}
.store-data__map__inner {
	position: relative;
	padding-bottom: 78%;
}
.store-data__map__area {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.store-data__map__area #map {
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 767px) {
	.store-data__container { display: block }
	.store-data__table__box { width: 100% }
	.store-data__map { width: 100% }
}


/*********************************************************************
*  Company
*********************************************************************/
.company { padding: 52px min(4%, 15px) 250px }
.company-box:not(:last-child) { margin-bottom: 64px }
.company-comment { color: var(--gray6) }
.company-table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.company-table tr:not(:last-child) { border-bottom: 1px solid var(--gray9) }
.company-table th, .company-table td {
	padding-top: 24px;
	padding-bottom: 24px;
	font-weight: 500;
	color: var(--gray6);
}
.company-table th {
	width: 190px;
	font-size: 1.6rem;
	line-height: 1.125;
}
.company-table td {
	font-size: 1.4rem;
	line-height: 1.285714285714286;
}
@media screen and (max-width: 767px) {
	.company-table th { width: 7em }
}


/*********************************************************************
*  Privacy policy
*********************************************************************/
.privacy {
	padding-right: min(4%, 15px);
	padding-left: min(4%, 15px);
	padding-bottom: 250px;
}
.privacy-content {
	color: var(--gray6);
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
}
.privacy-content p { margin-bottom: 1.5em }
.privacy-content h1,
.privacy-content h2,
.privacy-content h3,
.privacy-content h4,
.privacy-content h5,
.privacy-content h6 {
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 1em;
}



/*********************************************************************
*  Twitter
*********************************************************************/
.twitter__container { background-color: var(--black) }
.single-store .twitter__container { background:transparent;margin:0 auto;margin-bottom:76px;width:min(960px, 100%); }
@media (min-width:768px) { .single-store .twitter__container { margin-bottom:102px; } }
.single-store .twitter__top__line { display: none; }
.twitter__top__line { padding: 20px min(6.73%, 74px) 28px }
.twitter__caption {
	color: #fff;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .075em;
}
.twitter__caption img {
	height: 37px;
	margin-right: .625em;
}
.twitter__caption span {
	display: block;
	padding-bottom: 2px;
}
@media screen and (max-width: 767px) {
	.twitter__caption { display: block }
	.twitter__caption img {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 16px;
	}
	.twitter__caption span {
		padding-bottom: 0;
		text-align: center;
	}
}
.twitter__content {
	padding: 27px min(4%, 15px) 27px;
	border-bottom: 1px solid var(--black);
	background:
		repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 0) 3px, rgba(255, 255, 255, .35) 3px, rgba(255, 255, 255, .35) 5px)
		no-repeat top left / 100% 100%;
}
.single-store .twitter__content {
	border-bottom: none;
	padding-bottom: 0;
	padding-top: 0;
}
@media (min-width: 992px) {
	.single-store .twitter__content {
		padding: 0;
	}
}
.twitter__content ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.twitter__content li {
	background: #fff;
	box-shadow: 6px 6px 8px 2px rgba(0,0,0,0.6);
	border-radius: 24px;
	flex: 0 1 100%;
	margin-top: 24px;
	padding: 24px 8px;
}
@media (min-width: 667px) {
	.home .twitter__content li {
		flex-basis: calc(50% - 6px);
	}
	.single-store .twitter__content li {
		padding: 24px;
	}
	.twitter__content li:nth-child(2) {
		margin-top: 0;
	}
}
.twitter__content li:first-child {
	margin-top: 0;
}
.twitter__content a {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
}
.twitter__content a {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
}
.twitter__content figure {
	flex: 0 1 30%;
	margin-bottom: 0;
	padding-right: 8px;
}
@media (min-width: 768px) {
	.single-store .twitter__content figure {
		padding-right: 16px;
	}
}
.twitter__content figure img {
	border-radius: 50%;
}
.twitter__content dl {
	flex: 0 1 70%;
}
.twitter__content dt {
	align-items: center;
	display: flex;
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
}
@media (min-width: 667px) {
	.single-store .twitter__content dt {
		font-size: 2.8rem;
	}
}
@media (min-width: 992px) {
	.twitter__content dt {
		font-size: 20px;
	}
}
.twitter__content dt img {
	background: #000;
	height: 24px;
	margin-bottom: -2px;
	margin-right: 4px;
	padding: 4px;
	width: 24px;
}
@media (min-width: 667px) {
	.twitter__content dt img {
		margin-right: 8px;
		height: 40px;
		width: 40px;
	}
}
.twitter__content b {
	color: #333;
	display: block;
	font-size: 16px;
	font-weight: normal;
	margin: 2px 0;
}
@media (min-width: 667px) {
	.single-store .twitter__content b {
		font-size: 2rem;
	}
	.single-store .twitter__content dd {
		margin: 4px 0;
	}
}
@media (min-width: 768px) {
	.twitter__content b {
		margin: 4px 0;
	}
	.twitter__content dd {
		font-size: 12px;
	}
}
@media (min-width: 667px) {
	.single-store .twitter__content dd {
		font-size: 16px;
	}
}
@media (min-width: 992px) {
	.twitter__content dd {
		font-size: 14px;
	}
}



/*********************************************************************
*  Article
*********************************************************************/
.event-article__item:not(:last-child) {
	padding-bottom: 36px;
	margin-bottom: 36px;
	border-bottom: 2px dashed var(--gray6);
}
.event-article__title {
	margin-bottom: .6em;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
}
.event-article__content {
	font-size: 1.6rem;
}
.aligncenter {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}
.alignright {
	margin-right: 0;
	margin-left: auto;
	text-align: right;
}
.alignleft {
	margin-right: auto;
	margin-left: 0;
	text-align: left;
}


/*********************************************************************
*  Bottoms content
*********************************************************************/
.bottom__content { padding: 0 min(4%, 15px) 50px }
.bottom__box {
	width: 100%;
	padding-bottom: 10px;
}
.bottom__box__twin .bottom__box:first-child { margin-right: 28px }
.bottom__box__title {
	position: relative;
	height: 1.875em;
	padding-right: 1em;
	padding-left: 1em;
	margin-bottom: 1em;
	border-radius: .9375em;
	background-color: var(--gray9);
	color: var(--white);
	font-size: 1.6rem;
	line-height: 1.875;
	white-space: nowrap;
	overflow: hidden;
}
.bottom__box__title::before {
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	left: 0;
	width: .625em;
	height: 4px;
	background-color: var(--white);
}
.bottom__box__title strong { font-weight: 500 }
.bottom__box__title span { font-size: .875em }

.bottom__box__list .widget-mini-bnr {
	width: 260px;
	margin-bottom: 18px;
}
.bottom__box__list .widget-mini-bnr:not(:nth-child(4n)) { margin-right: max(0px, calc((100% - 1040px) / 3)) }
@media screen and (max-width: 1079px) {
	.bottom__box__list .widget-mini-bnr:not(:nth-child(3n)),
	.bottom__box__list .widget-mini-bnr:nth-child(4n) { margin-right: max(0px, calc((100% - 780px) / 2)) }
	.bottom__box__list .widget-mini-bnr:nth-child(3n) { margin-right: 0 }
}
@media screen and (max-width: 809px) {
	.bottom__box__list .widget-mini-bnr:nth-child(odd) { margin-right: max(0px, calc(100% - 520px)) }
	.bottom__box__list .widget-mini-bnr:nth-child(even) { margin-right: 0 }
}
@media screen and (max-width: 559px) {
	.bottom__box { padding-bottom: 30px }
	.bottom__box__twin { display: block }
	.bottom__box__twin .bottom__box:first-child { margin-right: 0 }
	.bottom__box__list .widget-mini-bnr:nth-child(odd) { margin-right: 0 }
	.bottom__box__list .widget-mini-bnr {
		width: 100%;
		margin-bottom: 6px;
	}
}


/*********************************************************************
*  Form
*********************************************************************/
.form {
	padding-right: min(4%, 15px);
	padding-left: min(4%, 15px);
	margin-bottom: 250px;
}

.form-block { margin-bottom: 44px }
.input-box:not(:first-child) { border-top: 1px solid var(--gray9) }
@media screen and (max-width: 767px) {
	.input-box { display: block }
}

.input-box dt {
	width: 14em;
	padding: 17px 3.5em 17px 1.5em;
	background-color: var(--gray11);
	color: var(--gray6);
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2.1875;
}
.input-box dt.required { position: relative }
.input-box dt.required::before {
	content: "必須";
	position: absolute;
	top: 26px;
	right: 20px;
	display: block;
	width: 35px;
	height: 18px;
	background-color: var(--gray6);
	color: var(--white);
	font-size: .875em;
	line-height: 1.28;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.input-box dt {
		width: 100%;
		padding-left: 16px;
	}
}

.input-box dd {
	width: calc(100% - 224px);
	padding: 17px 24px 17px 40px;
	color: var(--gray6);
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2.1875;
}
.input-box dd p + p {
	margin-top: 16px;
}
.input-box dd .form-text {
	margin-top: 4px;
	color: var(--gray6);
	font-size: 1.2rem;
	line-height: 1.666;
}
.input-box dd input:not([name^="product_status"]) + .form-text {
	margin-top: 0;
	margin-left: 1.5em;
}
@media screen and (max-width: 767px) {
	.input-box dd {
		width: 100%;
		padding: 17px 16px;
	}
	.input-box dd input:not([type=checkbox]):not([type=radio]),
	.input-box dd select {
		width: 100% !important;
	}
	.input-box dd input + .form-text {
		margin-top: 4px;
		margin-left: 0;
	}
}

.radio-box label {
	display: block;
	margin-right: 2.125em;
	color: var(--gray6);
	font-size: 1.6rem;
	line-height: 2.1875;
	white-space: nowrap;
}
.radio-box label:last-child { margin-right: 0 }
.radio-box label span {
	position: relative;
	padding-left: 1.25em;
}
.radio-box label span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	border: 1px solid var(--gray6);
	border-radius: 100%;
}
.radio-box label input[type=radio]:checked + span::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 2px;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background-color: var(--gray6);
	border-radius: 100%;
}
/*.radio-box label input.form-content-radio {
	display: none;
}*/
.radio-box label input[type=checkbox] {
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
}
.radio-box label input[type=checkbox] + span {
	padding-left: 0;
}
.radio-box label input[type=checkbox]+span::before {
	display: none;
}
.form-btn.select-type {
	padding: 2.4rem;
	padding-top: 0;
	width: 100%;
}
.form-btn.select-type > li {
	font-size: 1.2rem;
}
.form-btn.select-type > li:first-child {
	margin-right: 2.4rem;
}
.form-btn.select-type button {
	background: var(--gray11);
	color: var(--gray6);
	margin-bottom: 0.5rem;
	padding: 16px;
}
.form-btn.select-type button.js-clicked::after {
	content: "（選択中）";
	display: block;
}
.form-btn.select-type button.js-clicked {
	background: var(--gray6);
	color: #fff;
}



.add-product {
	width: min(100%, 223px);
	height: 40px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 18px;
	background-color: var(--gray6);
	color: var(--white);
	font-size: 13px;
	font-weight: 700;
	line-height: 3;
	text-align: center;
	cursor: pointer;
}
.form-btn {
	width: min(100%, 223px);
	margin-right: auto;
	margin-left: auto;
}
.form-btn input {
	width: 106px;
	height: 40px;
	border: 1px solid transparent;
	font-weight: 500;
}
.form-btn input[type=submit] {
	margin-right: 11px;
	border-color: var(--gray6);
	background-color: var(--gray6);
	color: var(--white);
}
.form-btn input[type=reset],
.form-btn input[type=submit].back {
	border-color: var(--gray12);
	background-color: var(--white);
	color: var(--gray6);
}


.form-description {
	margin-bottom: 24px;
	color: var(--gray6);
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
}
.form-caution {
	padding: 12px 26px;
	margin-bottom: 34px;
	background-color: var(--gray11);
}
.form-caution p {
	padding-left: 2em;
	background: url(./images/icon_caution.png) no-repeat top 6px left / 15px;
	color: var(--gray6);
	font-size: 1.3rem;
	line-height: 2;
}
@media screen and (max-width: 767px) {
	.form-caution { padding: 8px 12px }
}


.remove-form-block {
	padding: 1em 0;
	color: var(--red);
	font-size: 1.2rem;
	text-decoration: underline;
	cursor: pointer;
}




/*********************************************************************
*  既存スタイルの上書き
*********************************************************************/

/*
 * 共通
 */
.responsive-brake {
	display: block;
}
body:not(.home) header {
	margin-bottom: 1.6rem;
}
@media (min-width:768px) {
	body:not(.home) header {
		margin-bottom: 0;
	}
}
main {
 	margin-bottom: 8rem;
}
.content__title {
	height: auto;
	margin-bottom: 0.8rem;
	overflow: visible;
}
@media (min-width:667px) {
	.content__title {
		height: 52px;
		overflow: hidden;
	}
}
.content__title b {
	display: block;
	font-size: 1.8rem;
	font-weight: 900;
}
@media (min-width:667px) {
	.content__title b {
		font-size: 1.6rem;
		line-height: 2.25;
	}
}
@media (min-width:667px) {
	.content__title b {
		font-size: 1.8rem;
		line-height: 2;
	}
}
.content__title__sub {
	display: none;
}
@media (min-width:667px) {
	.content__title__sub {
		display: flex;
	}
}
.content__text > p {
	margin-bottom: 1em;
	word-break: break-all;
}
.youtube iframe {
	height: 200px;
	vertical-align: bottom;
	width: 100%;
}
@media (min-width:667px) {
	.youtube iframe {
		height: 320px;
	}
}
.pager {
	margin-bottom: 6.4rem;
	padding: 4rem 0.8rem 6.4rem;
	padding-bottom: 0;
}
.top-under__bnr__area {
	padding: 0;
}
.top-under__bnr__link__item {
	margin-bottom: 0.8rem;
}
@media (min-width:768px) {
	.top-under__bnr__link__item {
		margin-bottom: 0;
	}
}
.top-main__left, .top-main__right {
	margin-bottom: 6.4rem;
}
@media (min-width:768px) {
	.top-main__left, .top-main__right {
		margin-bottom: 0;
	}
}
.container {
	padding: 0 min(4%, 1.6rem);
}
.container__inner {
	margin: 0 auto;
	width: min(1100px, 100%);
}
.bnr-list {
	margin-bottom: 8rem;
}
@media (min-width:667px) {
	.bnr-list {
		font-size: 0;
	}
}
.bnr-list__item {
	margin-bottom: 1.6rem;
}
@media (min-width:667px) {
	.bnr-list {
		margin-bottom: 6.4rem;
	}
	.bnr-list__item {
		display: inline-block;
		width: 50%;
	}
	.bnr-list__item:nth-child(odd) {
		padding-right: 1%;
	}
	.bnr-list__item:nth-child(even) {
		padding-left: 1%;
	}
}
@media (min-width:768px) {
	.top-main + .container .bnr-list {
		display: none;
	}
}
@media (min-width:1024px) {
	.bnr-list {
		margin-left: -0.5%;
		margin-right: -0.5%;
	}
	.bnr-list__item {
		display: inline-block;
		width: 25%;
	}
	.bnr-list__item:nth-child(odd), .bnr-list__item:nth-child(even) {
		padding: 0 0.5%;
	}
}
a[href^="mailto:sample"] {
	display: none;
	opacity: 0;
	position: absolute;
	visibility: hidden;
}
.text-link {
	color: #0000ff;
}

/*
 * トップ
 */
body:not(.search,.post-type-archive-item) .pager {
	margin-bottom: -1rem;
	margin-top: -6.4rem;
}
.home .event-article__time {
	margin-top: 0.8rem;
}
.home .content__title + .content__eyecatch {
	margin-bottom: 0.8rem;
}
.top-banner__item a {
	display: block;
}

/*
 * ヘッダーナビゲーション
 */
.header__nav__list .nav__item:not(:last-child)::before {
	width: calc(100% - 60px);
}
.nav__item__counter {
	float: right;
	font-size: 12px;
	margin-top: -4px;
}
@media (min-width:768px) {
	.header__nav__list .nav__item:not(:last-child)::before {
		width: 2px;
	}
}
@media (min-width:768px) {
	.header__nav__list .nav__item {
		padding-left: 8px;
	}
	.header__nav__list .nav__item:not(:last-child) {
		margin-right: 0;
		padding-right: 8px;
	}
	.header__nav__list .nav__item a {
		font-size: 1.4rem;
	}
}
@media (min-width:1024px) {
	.header__nav__list .nav__item {
		padding-left: 28px;
	}
	.header__nav__list .nav__item:not(:last-child) {
		margin-right: 2px;
		padding-right: 28px;
	}
	.header__nav__list .nav__item a {
		font-size: 1.6rem;
	}
}

/*
 * 店舗情報リンク
 */
.store__container.store-top {
	padding-bottom: 0;
}
body.home:not(.paged) .store__container.store-top {
	padding-bottom: 32px;
}
.store__container .store__area {
	border: none;
	filter: drop-shadow( 0 0 3px rgba(0, 0, 0, .5) );
}
@media (min-width:1024px) {
	.store__caption + * {
		width: calc(100% - min(228px, 20.73%));
	}
}
.store__list {
	width: 100%;
}
.store__item {
	height: auto;
}
.store__item:first-child {
	background: var(--white);
}
.store__item:last-child {
	padding-bottom: 25px;
}
@media (min-width:768px) {
	.store__item:last-child {
		padding-bottom: 20px;
	}
}
@media (min-width:768px) {
	.store__item {
		height: 100%;
		padding-right: 12px;
		padding-left: 12px;
	}
}
@media (min-width:1200px) {
	.store__item {
		padding: 25px 20px 20px;
	}
}
@media (min-width:768px) {
	.store__tel span {
		font-size: 0.71em;
		padding-top: 4px;
		padding-left: calc(1em + 4px);
	}
}
@media (min-width:1200px) {
	.store__tel span {
		font-size: 0.86em;
		padding-top: 2px;
		padding-left: 1em;
	}
}
.store__tel span.online {
	background: url(./images/icon_mail.png) no-repeat left center / auto 21px;
	height: 28px;
	font-size: 0.86em;
	padding-left: 32px;
	padding-top: 5px;
	vertical-align: top;
}
@media (min-width:768px) {
	.store__tel span.online {
		font-size: 0.43em;
		padding-top: 9px;
	}
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
}
input[type="number"] {
	-moz-appearance: textfield;
	appearance: textfield;
}

/*
 * 買取上限金額一覧表
 */
.list-item__main__container {
	padding-bottom: 0;
}
.list-item__content__title {
	height: auto;
	line-height: inherit;
}
.list-item__banner {
	font-size: 0;
	margin-bottom: 32px;
}
/*@media (min-width:667px) {
	.list-item__banner > * {
		display: inline-block;
		width: 50%;
	}
}
@media (min-width:1024px) {
	.list-item__banner > * {
		display: block;
		width: 100%;
	}
}
.list-item__banner > * {
	margin-bottom: 16px;
}
@media (min-width:667px) {
	.list-item__banner > * {
		margin-bottom: 0;
		padding-left: 8px;
	}
	.list-item__banner > *:first-child {
		padding-left: 0;
		padding-right: 8px;
	}
}
@media (min-width:1024px) {
	.list-item__banner > * {
		margin-bottom: 16px;
		padding: 0;
	}
	.list-item__banner > *:first-child {
		padding: 0;
	}
}
*/
.list-item__search__box select {
	flex: 0 1 100%;
	margin-bottom: 12px;
}
@media (min-width:667px) {
	.list-item__search__box select {
		flex: 1;
	}
}
@media (min-width:1024px) {
	.list-item__search__box select {
		flex: 0 1 auto;
	}
}
@media (min-width:1200px) {
	.list-item__search__box select {
		margin: 16px 8px;
		margin-top: 0;
	}
}
.list-item__search__box__inner {
	display: table;
	margin: 0 auto;
	margin-top: 4px;
}
.list-item__search__label {
	margin-bottom: 8px;
}
.list-item__result__table th {
	text-align: left;
}
@media (min-width:667px) {
	.list-item__result__table th.list-item__result__price {
		text-align: right;
	}
}
.list-item__result__table th.list-item__result__maker,
.list-item__result__table td.list-item__result__maker {
	padding: 0 0.8rem;
	width: 80px;
}
@media (min-width:768px) {
	.list-item__result__table th.list-item__result__maker,
	.list-item__result__table td.list-item__result__maker {
		padding-left: 4rem;
		padding-right: 2.4rem;
		width: 160px;
	}
}
@media (min-width:1024px) {
	.list-item__result__table th.list-item__result__maker,
	.list-item__result__table td.list-item__result__maker {
		width: 280px;
	}
}
.list-item__result__table th.list-item__result__product,
.list-item__result__table td.list-item__result__product {
	padding-right: 0.8rem;
}
@media (min-width:768px) {
	.list-item__result__table th.list-item__result__product,
	.list-item__result__table td.list-item__result__product {
		padding-right: 4rem;
	}
}
@media (min-width:1024px) {
	.list-item__result__table th.list-item__result__product,
	.list-item__result__table td.list-item__result__product {
		padding-right: 0;
	}
}
.list-item__result__table th.list-item__result__price {
	width: 120px;
}
@media (min-width:768px) {
	.list-item__result__table th.list-item__result__price {
		width: 160px;
	}
}
@media (min-width:1024px) {
	.list-item__result__table th.list-item__result__price {
		width: 140px;
	}
}
.list-item__result__product span,
.list-item__result__price time {
	font-size: 1.2rem;
	font-weight: 300;
	letter-spacing: .1em;
}
.list-item__result__price b {
	font-size: 1.2rem;
	font-weight: 450;
	letter-spacing: .1em;
}
.list-item__no-much a {
	font-weight: bold;
	text-decoration: underline;
}
.list-item__no-much a:hover {
	text-decoration: none;
}
.list-item__result .list-item__no-much {
	padding-bottom: 0;
}
.list-item__no-much + .list-item__no-much {
	padding-top: 0;
}
@media (min-width:992px) {
	.list-item__no-much br:nth-of-type(1) {
		display: none;
	}
}

/*
 * 買取フォーム
 */
.form {
	margin-bottom: 0;
}
.form input:not([type="text"],[type="email"],[type="tel"]):hover,
.form .radio-box label:hover {
	cursor: pointer;
}
.form--confirm input:not([type="submit"]):read-only ,
.form--confirm textarea:read-only,
.form--confirm select:read-only {
	pointer-events: none;
}
.form--confirm select:read-only {
	background: transparent;
}
.form:not(.form--confirm,.form--back) > .inner > .add-product,
.form:not(.form--confirm,.form--back) > .inner > .form-attention,
.form:not(.form--confirm,.form--back) > .inner > .form-btn {
	display: none;
}
.form-block {
	margin-bottom: 0;
	margin-top: 2.4rem;
}
@media (min-width:768px) {
	.form-block {
		margin-bottom: 2.4rem;
	}
}
.form:not(.form--confirm) #product-1 ~ .form-block.js-added .input-box.flex:not(.js-show) {
	display: none;
}
.form:not(.form--confirm,.form--back) .form-block:first-child > .input-box:not(.js-show) {
	display: none;
}
.form:not(.form--confirm,.form--back) .input-box.detail-box:not(.js-show) {
	display: none;
}
.form-block .text-link + a {
	color: #0000ff;
	font-weight: normal;
	text-decoration: underline;
}
.form [name="address"] {
	margin: 16px 0;
}
.address-box dd input:not([name^="product_status"]) + .form-text {
	margin-left: 0;
	margin-top: 8px;
}
@media (min-width:938px) {
	.address-box dd input:not([name^="product_status"]) + .form-text {
		margin-top: -16px;
	}
}
.form-attention {
	font-size: 1.6rem;
	margin: 64px auto;
}
.form-attention a {
	color: var(--red);
	display: table;
	margin: 0 auto;
	margin-bottom: 32px;
}
/*
.form-attention input[type="checkbox"]{
	display: none;
}
.form-attention input[type="checkbox"] + label{
	cursor: pointer;
	display: none;
	display: inline-block;
	padding-left: 25px;
	padding-right: 10px;
	position: relative;
}
.form-attention input[type="checkbox"]+label::before {
	background-color: #FFF;
	border: 1px solid;
	border-color:  #585753;
	box-sizing: border-box;
	content: "";
	display: block;
	height: 20px;
	left: 0;
	margin-top: -10px;
	position: absolute;
	top: 50%;
	width: 20px;
}
.form-attention input[type="checkbox"]:not([name])+label::before {
	background-color: var(--gray11);
}
.form-attention input[type="checkbox"]:checked+label::after {
	border-bottom: 3px solid;
	border-color:  #585753;
	border-left: 3px solid;
	box-sizing: border-box;
	content: "";
	display: block;
	height: 9px;
	left: 3px;
	margin-top: -9px;
	position: absolute;
	top: 50%;
	transform: rotate(-45deg);
	width: 18px;
}
*/
.form-attention ul {
	display: table;
	margin: 0 auto;
}
.form-attention li {
	line-height: 1;
	margin-bottom: 16px;
}
.form-attention small {
	font-size: 1em;
	margin-top: -4px;
}
.form-btn {
	width: min(100%, 312px);
}
.form-btn.select-type {
	padding: 0;
}
@media (min-width:768px) {
	.form-btn.select-type {
		display: flex;
		justify-content: space-between;
	}
}
@media (min-width:992px) {
	.form-btn.select-type {
		justify-content: center;
	}
}
.form-btn.select-type > li {
	margin-bottom: 2.4rem;
}
@media (min-width:768px) {
	.form-btn.select-type > li {
		flex: 0 1 30%;
	}
	.form-btn.select-type > li:nth-child(3) {
		margin-bottom: 0;
	}
	.form-block:nth-of-type(n+2) .form-btn.select-type > li {
		flex: 0 1 47.5%;
	}
}
@media (min-width:992px) {
	.form-btn.select-type > li {
		flex: 0 1 30%;
		padding: 0 2.5%;
	}
}
.form-btn.select-type > li:first-child {
	margin-right: 0;
}
.form-btn input {
	width: 148px;
}
.form-btn input[type="reset"],
.form-btn input[type="submit"].back {
	margin-right: 16px;
}
.form-btn input[type="submit"] {
	color: inherit;
	margin-right: 0;
}
select.disabled:read-only {
	background: rgba(244,244,244,1);
	pointer-events: none;
}
.omakase-form {
	display: none;
}
.omakase-form .form-block {
	margin: 0;
}
.omakase-form .input-box:first-child {
	border-top: 1px solid var(--gray9)
}
.square-checkbox {
	display: inline-flex;
	align-items: start;
	cursor: pointer;
	font-size: 16px;
	line-height: 1.5;
	user-select: none;
}
.form--confirm .square-checkbox:hover,
.form--confirm .form-btn.select-type button:hover {
	cursor: auto;
}
.square-checkbox input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	border: 2px solid #ddd;
	border-radius: 4px;
	background-color: #fff;
	margin-right: 12px;
	position: relative;
	transition: all 0.3s ease;
}
.square-checkbox input:read-only {
  background-color: #fff!important;
}
.square-checkbox input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.form--confirm .square-checkbox input[type="checkbox"]::after {
  border-color: #5f5f5f;
}
.square-checkbox input[type="checkbox"]:checked {
  background-color: #007bff;
  border-color: #007bff;
}
.square-checkbox input:checked {
  background-color: #007bff !important;
  border-color: #007bff !important;
}
.form--confirm .square-checkbox input:checked {
  background-color: #f4f4f4 !important;
  border-color: #f4f4f4 !important;
}
.square-checkbox input[type="checkbox"]:checked::after {
  opacity: 1;
}
.square-checkbox input[type="checkbox"]:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}
.input-box.select-sheets dd {
	line-height: inherit;
}
@media (min-width:768px) {
	.input-box.select-sheets dd {
		display: flex;
		flex-wrap: wrap;
	}
}
@media (min-width:768px) {
	.input-box.select-sheets dd > *:not(.flex) {
		flex: 1 0 100%;
	}
}
.input-box.select-sheets dd p {
	margin-bottom: 16px;
}
.input-box.select-sheets .flex {
	align-items: center;
	margin-bottom: 16px;
}
@media (min-width:768px) {
	.input-box.select-sheets .flex {
		flex: 0 1 30%;
	}
	.input-box.select-sheets .flex:first-of-type {
		margin-left: -12px;
	}
	.input-box.select-sheets .flex:last-of-type {
		flex-basis: 40%;
	}
}
.input-box.select-sheets .flex label {
	padding-right: 12px;
}
@media (min-width:768px) {
	.input-box.select-sheets .flex label {
		padding-left: 12px;
	}
}
.input-box.select-sheets picture {
	display: block;
	margin: 0 auto;
	width: 75%;
}
@media (min-width:768px) {
	.input-box.select-sheets picture {
		width: auto;
	}
}
.input-box.flex.js-show {
	display: block;
}
@media (min-width:768px) {
	.input-box.flex.js-show {
		display: flex;
	}
}
.remove-form-block {
	display: inline-block;
}

/*
 * TOPページ
 */
body.home .top-main {
	padding-top: 4rem;
}
.event-article__content p {
	font-size: 1.4rem;
	padding: 4px 0;
}
.event-article__content > figure:last-child {
	margin-bottom: 0;
}
.more-link {
	display: table;
	margin: -4px auto;
	margin-right: 0;
}

/*
 * 投稿
 */
.top-main {
	padding-top: 0;
	padding-bottom: 0;
}
.wp-block-image a {
	display: table-cell;
	margin: 0 auto;
	vertical-align: middle;
}
.wp-block-image img{
	margin-left: auto;
	margin-right: auto;
}
body:not(.single,.page) .wp-block-image img{
	max-height: 300px;
}
.single .store-data {
	margin-top: 0.9rem;
}
.store-container + .bottom__content .inner {
	margin-bottom: -32px;
}
.bottom__box {
	padding-bottom: 32px;
}
@media (min-width:560px) {
	.bottom__box {
		padding-bottom: 32px;
	}
}
.event-article__time + .event-article__title {
	margin-bottom: 0.8rem;
	margin-top: 0;
}
.event-article__time + .content__eyecatch {
	margin-top: 0.8rem;
}
@media (min-width:1024px) {
	.event-article__time + .event-article__time {
		margin-top: 1.6rem;
	}
	.event-article__time + .event-article__title {
		margin-bottom: 1.6rem;
	}
	.event-article__time + .content__eyecatch {
		margin-top: 1.6rem;
	}
}
.event-article__item:not(:last-child) {
	border-bottom: none;
	margin-bottom: 6.4rem;
	padding-bottom: 0;
}
.event-article__title {
	margin: 0.8rem 0;
}
.event-article__time {
	color: var(--gray6);
	font-size: 1.6rem;
	margin-top: 0.6em;
}
.event-article__time > time:nth-child(2) {
	font-size: 1.2rem;
	margin-left: 4px;
}
.event-article__content .wp-block-image.is-style-rounded img {
	border-radius: 24px;
}
.event-article__content .youtube iframe {
	height: 450px;
	width: 100%;
}
@media (min-width:768px) {
	.single .bottom__box__twin .bottom__box {
		flex: 0 1 50%;
	}
}
.single .bottom__box__twin .bottom__box:first-child{
	margin-right: 0;
}
@media (min-width:667px) {
	.single .bottom__box__twin .bottom__box:nth-child(even){
		margin-left: 2.4rem;
	}
}

/*
 * 一覧ページ
 */
.content__title + .content__eyecatch {
	margin-top: 1.6rem;
}
@media (min-width:1024px) {
	.content__title + .content__eyecatch {
		margin-top: 2.4rem;
	}
}

/*
 * 店舗ページ
 */
.store-header {
	margin-bottom: 0;
}
.single-store .store-container {
	padding-top: 0;
}
h2.store-title {
	background-color: transparent;
	border-bottom: solid 12px var(--red);
	color: var(--red);
}
.single-store .content__title {
	margin-bottom: 3.2rem;
}
.single-store .bottom__box__twin .bottom__box__title {
	margin-bottom: 0;
}
.single-store .event-article__item:not(:last-child) {
	border-bottom: 2px dashed var(--gray6);
	padding-bottom: 2.4rem;
}
.single-store .event-article__item:not(:last-child) {
	margin-bottom: 1.6rem;
}
.store-title__brake {
	display: block;
}
@media (min-width:667px) {
	.store-title__brake {
		display: inline;
	}
}
.store-content {
	padding-top: 24px;
}
@media (min-width:768px) {
	.store-content {
		padding-bottom: 72px;
	}
}
.store-catch {
	margin-bottom: 16px;
}
.store-data {
	padding-bottom: min(4%, 15px);
}
@media (min-width:768px) {
	.store-data {
		padding-bottom: 0;
	}
	.store-data__map {
		position: relative;
	}
	.store-data__map__inner {
		height: 100%;
		position: absolute;
		width: 100%;
	}
}
@media (min-width:768px) {
	.store-data__map__inner {
		padding-bottom: 0;
	}
}
.store-comment {
	line-height: inherit;
}
@media (min-width:768px) {
	.single .contents .bottom__box__list {
		justify-content: space-between;
	}
	.single .contents .bottom__box__list::after{
		content: "";
		display: block;
		width: 240px;
	}
	.bottom__box__list .widget-mini-bnr {
		width: 240px;
	}
	.bottom__box__list .widget-mini-bnr:nth-child(odd),
	.bottom__box__list .widget-mini-bnr:nth-child(4n) {
		margin-right: 0;
	}
	.bottom__box__list .widget-mini-bnr:nth-child(3n+2) {
		margin-right: max(0px, calc((100% - 780px) / 2));
	}
}
@media (min-width:1024px) {
	.single .contents .bottom__box__list {
		justify-content: flex-start;
	}
	.single .contents .bottom__box__list::after{
		display: none;
	}
	.bottom__box__list .widget-mini-bnr {
		margin-right: 24px;
		width: 260px;
	}
	.bottom__box__list .widget-mini-bnr:not(:nth-child(3n)),
	.bottom__box__list .widget-mini-bnr:nth-child(4n) {
		margin-right: 24px;
	}
}
@media (min-width:1200px) {
	.bottom__box__list .widget-mini-bnr,
	.bottom__box__list .widget-mini-bnr:not(:nth-child(3n)),
	.bottom__box__list .widget-mini-bnr:nth-child(4n) {
		margin-right: 0;
	}
	.bottom__box__list .widget-mini-bnr:not(:nth-child(4n)) {
		margin-right: max(0px, calc((100% - 1040px) / 3))
	}
}
@media (min-width:768px) {
	.store-container + .bottom__content .bottom__box__twin .bottom__box:not([id]) {
		display: block;
	}
}
.item-list {
	color: #333;
	display: flex;
	font-size: 1.4rem;
	flex-wrap: wrap;
	margin: 4rem -2rem 2rem -2rem;
}
@media (min-width:667px) {
	.item-list .responsive-brake {
		display: none;
	}
}
.item-list__column {
	margin: 2rem 0;
	padding: 0 2rem;
	width: 50%;
}
@media (min-width:768px) {
	.item-list__column {
		width: 33.33%;
	}
}
@media (min-width:1024px) {
	.item-list__column {
		width: 25%;
	}
}
.item-list__title {
	border: 0.4rem solid var(--red);
	border-radius: 1.6rem;
	color: var(--red);
	font-size: 2rem;
	margin: 0 2rem;
	padding: 1.6rem;
	text-align: center;
	width: 100%;
}
.item-list__column img {
	margin: 0 auto;
	margin-bottom: 0.8rem;
	max-height: 300px;
}
.item-list + a {
	background: var(--red);
	border-radius: 0.8rem;
	color: #fff;
	display: table;
	font-size: 2.8rem;
	font-weight: bold;
	margin: 0 auto;
	padding: 1.6rem;
}

/*
 * 固定ページ
 */
.page main .store__container {
	display: none;
}
@media (min-width:768px) {
	.page main .store__container {
		display: block;
	}
}
.page .contents {
	padding-left: min(4%, 15px);
	padding-right: min(4%, 15px);
}
.content__eyecatch {
	display: table;
	margin: 0 auto;
	margin-bottom: 4rem;
}
.page .content__text {
	font-size: 1.6rem;
	margin-left: min(4%, 15px);
	margin-right: min(4%, 15px);
}
@media (min-width:667px) {
	.page .content__text {
		margin-left: min(16%, 56px);
		margin-right: min(16%, 56px);
	}
}
@media (min-width:768px) {
	.page .content__text {
		margin-left: min(32%, 120px);
		margin-right: min(32%, 120px);
	}
}
@media (min-width:1024px) {
	.page .content__text {
		margin-left: min(64%, 224px);
		margin-right: min(64%, 224px);
	}
}
body:not(.single,.page) main .wp-block-image {
	background: #f8f8f8;
	display: table;
	height: 173px;
	margin-left: auto;
	margin-right: auto;
	max-width: 600px;
	width: 100%;
}
@media (min-width:667px) {
	body:not(.single,.page) main .wp-block-image {
		height: 300px;
	}
}
@media (min-width:768px) {
	body:not(.single,.page) main .wp-block-image {
		height: 219px;
	}
}
@media (min-width:1024px) {
	body:not(.single,.page) main .wp-block-image {
		height: 300px;
	}
}

/*
 * 会社概要
 */
.company {
	padding-bottom: 0;
	padding-top: 0;
}
.company-comment, .privacy-content,
.form-description, .form-block {
	margin-top: 2.4rem;
}

/*
 * プライバシーポリシー
 */
.privacy {
	padding-bottom: 0;
}

/*
 * サイドバー
 */
.sidebar .top-right__content:last-child {
	margin-bottom: 0;
}
.sidebar.bottom__content {
	padding-bottom: 0;
}
.sidebar.bottom__content .bottom__box:last-child  > .bottom__box:first-child {
	margin-bottom: -6px;
}
@media (min-width:667px) {
	.sidebar.bottom__content .bottom__box:last-child  > .bottom__box:first-child {
		margin-bottom: -18px;
	}
}
.sidebar > .inner {
	margin-bottom: -3.2rem;
}
.sidebar .bottom__box.flex > .bottom__box {
	padding-bottom: 0;
}
.widget-mini-bnr.color-c .bnr__update::before {
	background-image: linear-gradient(rgba(128, 128, 128, .75), rgba(128, 128, 128, .75))
}

/*
 * フッター
 */
.footer {
	background: transparent;
}
.footer .store__container {
	margin-bottom: 4rem;
}
.footer > .inner {
	background-color: var(--gray11);
	padding: 14px min(4%, 15px) 12px;
	width: 100%;
}
.footer .twitter__container {
	margin-bottom: 6.4rem;
}
.footer-content {
	margin: 0 auto;
	padding: 0;
	position: relative;
	width: min(1100px, 100%);
}
.return-top {
	right: 0;
	bottom: calc(100% + 6px);
}
.copyright {
	padding: 1.6rem 3.2rem;
}
