@charset "UTF-8";

/*--2017.10 Supplement--*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Animations
# Normalize
# Global
# Utils
# Buttons
# Icons
# Document Layout
# Preload
# Header
## Site nav
## Megamenu
# Footer
## Footer Widgets
## Footer Links
# Sidebar
# Wordpress Common
# Breadcrumbs
# Pagination
# Page Common
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@-webkit-keyframes dropindown {
	0% {
		transform: translate3d(0, -100%, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes dropindown {
	0% {
		transform: translate3d(0, -100%, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}

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

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

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
html {
	font-family: sans-serif;
	line-height: 1.15;
	ms-text-size-adjust: 100%;
	webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
}
ul,li{
	list-style-type:none;
	padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}
audio,
canvas,
progress,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
progress {
	vertical-align: baseline;
}
template,
[hidden] {
	display: none;
}
a {
	background-color: transparent;
	webkit-text-decoration-skip: objects;
}
a:active,
a:hover {
	outline-width: 0;
}
abbr[title] {
	border-bottom: none;
	text-decoration: underline dotted;
	text-decoration: underline;
}
b,
strong {
	font-weight: inherit;
}
b,
strong {
	font-weight: bolder;
}
dfn {
	font-style: italic;
}
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
mark {
	background-color: #ff0;
	color: #000;
}
small {
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
img {
	border-style: none;
}
svg:not(:root) {
	overflow: hidden;
}
code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}
figure {
	margin: 1em 40px;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}
button,
input,
optgroup,
select,
textarea {
	font: inherit;
	margin: 0;
}
optgroup {
	font-weight: bold;
}
button,
input {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
	webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}
fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}
textarea {
	overflow: auto;
}
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
[type="search"] {
	outline-offset: -2px;
	webkit-appearance: textfield;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	webkit-appearance: none;
}
::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.54;
}
::-webkit-file-upload-button {
	font: inherit;
	webkit-appearance: button;
}


/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
	font-size: 14px;
	font-family: "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro";
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	line-height: 1.25;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
	color: #000;
	background: #fff;
}

a {
	text-decoration: none;
	-webkit-transition: all .2s;
	transition: all .2s;
}

a:hover,
a:active {
	color: #555;
}

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

}

/*ランディングページ用バナー画像*/
.landingBanner{
	margin-bottom: 25px;
}

img.lazy,
img.maybe {
	display: none;
}

table {
	width: 100%;
}

small {
	font-size: 85%;
}

.warning {
	color: #FF0000;
}

/* Page fade in effect */
/*body {
opacity: 0;
}

.window-loaded {
opacity: 1;

-webkit-animation-duration: 0.2s;
-webkit-animation-name: fade-in;
-webkit-animation-timing-function: ease;

animation-duration: 0.2s;
animation-name: fade-in;
animation-timing-function: ease;
}*/


/*--------------------------------------------------------------
# Utils
--------------------------------------------------------------*/
.clearfix:after {
	content:"";
	display:block;
	clear:both;
}

/* バナーエリア */
.foot_bnr_bk {
	width: 100%;
	padding: 20px 0px 15px;
	clear: both;
	background-color: #f6f6f6;
}

.foot_bnr_area {
	width: 1000px;
	margin: 0 auto;
}

.hiraku_area {
    margin-bottom: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ccc;
}

.hiraku_area > p {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: bold;
}

.hiraku_area_left {
	margin-right: 20px;
	display: inline-block;
	width: 30%;
}

.hiraku_area_left a {
  transition: all 0.3s ease-in-out 0s;
}

.hiraku_area_left a:hover {
  opacity: 0.6;
}


.hiraku_area_left img {
	width: 100%;
	height: auto;
}

.hiraku_area_right {
	display: inline-block;
	vertical-align: top;
}

.hiraku_area_right dd {
	margin-inline-start: 0px !important;
}

.hiraku_area_right > p {
	font-size: 15px;
    margin-top: 0;
    margin-bottom: 0;
	line-height: 1.2;
}

.hiraku_area_right > p ::first-line {
	font-weight: bold;
	font-size: 15px;
	line-height: 1.2;
}

.bnr_area p {
	margin-bottom: -4px;
	font-size: 18px;
	font-weight: bold;
}

.bnr_area ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
}

.bnr_area li {
	width: calc(94%/3);
	margin-right: calc(6%/2);
	margin-bottom: calc(6%/3);
}
.bnr_area li:nth-child(3n) {
	margin-right: 0;
}

.bnr_area li a {
  transition: all 0.3s ease-in-out 0s;
}

.bnr_area li a:hover {
  opacity: 0.6;
}

.bnr_area img {
	width: 100%;
	height: auto;
}
/* バナーエリアここまで */

/* 230217追記 フッター運営会社 */
.footerLink {
	width: 1000px;
	margin: 0 auto;
}
.footerLink a {
	display: inline-block;
	position: relative;
	margin-bottom: 10px;
	color: #fff;
}
.footerLink a:hover {
	color: #ccc;
	text-decoration: underline;
}
.footerLink a:after {
	content: "";
	position: absolute;
	top: -1px;
	right: -20px;
	display: inline-block;
	width: 15px;
	height: 15px;
	background: url('../img/external-link_w.svg') ;
	background-size: cover;
}

.container {
	margin: 0 auto;
	width: 1000px;
	/*	padding-left: 20px;
	padding-right: 20px;*/
	overflow: hidden;
}

.container--nopad {
	margin: 0 auto;
	width: 1000px;
	padding-left: 0;
	padding-right: 0;
}

.container--full {
	margin: 0 auto;
	max-width: 100%;
	padding-left: 3%;
	padding-right: 3%;
}

.container:after {
	content:"";
	display:block;
	clear:both;
}

.alt {
	display: none;
}

.hover {
	transition: opacity 0.2s ease-in-out;
}

.hover:hover {
	opacity: 0.8;
}


/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.button {
	display: inline-block;
	color: #FFF;
	background: #414EAB;
	padding: 9px 14px;
	text-align: center;
	font-size: 16px;
	text-decoration: none;
	border-radius: 4px;
}

.button:hover {
	color: #FFF;
}

.button-block {
	display: block;
	width: 100%;
	padding-left: 6px;
	padding-right: 6px;
}

.button-round {
	border-radius: 50px;
}

.button-large {
	padding: 13px 20px;
}

.button-arrow {
	position: relative;
	padding-right: 16px;
}

.button-arrow:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 7px;
	margin-top: -8px;
	width: 8px;
	height: 17px;
	background: url(../img/common/button-arrow.png);
	background-size: 8px 17px;
}

.button i {
	position: relative;
	top: -2px;
	vertical-align: middle;
	display: inline-block;
	margin-right: 6px;
	width: 17px;
	height: 17px;
	background-repeat: no-repeat;
	background-size: 17px auto;
	background-position: 0 center;
}

/*--------------------------------------------------------------
# Icons
--------------------------------------------------------------*/
.icon-mail {
	background-image: url(../img/common/mail-icon.png);
}

/*--------------------------------------------------------------
# Document Layout
--------------------------------------------------------------*/
body {
	background: #FFF;
	background-attachment: fixed;
}

.document-column-wrapper {
	min-width: 1000px;
	overflow: hidden;
	background: #FFF url(../img/common/sidebar-bg.gif) repeat-y right;
	background-attachment: fixed;
}

.document-main-wrapper {
	width: 100%;
	float: left;
	margin-right: -200px;
}

.document-main {
	min-width: 1040px;
	position: relative;
	/*margin-right: 200px; 201709 サイドバーを取り除く*/
	background: #FFF;
}
/*
.document-sidebar {
width: 200px;
float: right;
position: relative;
z-index: 10;
background: #26272C;
}
201709 サイドバーを取り除く
*/
.content-main-backdrop {
	position: fixed;
	z-index: 9;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0);
	visibility: hidden;
	transition: all 0.25s ease-in-out;
}

.show-backdrop .content-main-backdrop {
	visibility: visible;
	background: rgba(0, 0, 0, 0.8);
}

.site-footer {
	clear: both;
	margin-right: 200px;
}

@media screen and (max-width: 1000px) {
	.document-column-wrapper {
		background: none;
	}

	.document-main-wrapper {
		float: none;
		margin-right: 0;
	}

	.document-main {
		margin-right: 0;
	}

	.document-sidebar {
		width: auto !important;
		float: none;
		position: static !important;
	}

	.document-sidebar + div {
		display: none !important;
	}

	.site-footer {
		margin-right: 0;
	}
}


/*--------------------------------------------------------------
# Preload
--------------------------------------------------------------*/
body {
/*	opacity: 0;*/
	transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

body.window-loaded {
	opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header {
	position: relative;
	z-index: 10;
	background: #FFF;
	/*border-top: 9px solid #FF0000; 201709 最上部の隙間を詰める*/
}

.site-header-top {
	overflow: hidden;
	/*padding:0 0 12px 0; 201709 最上部の隙間を詰める*/
	padding:0;
}

.site-header-logo210709 {
	float: left;
	width:140px;
	padding:0;
	margin: 0;
	line-height: 0;
}
.site-header-logo {
	float: left;
	margin: 0;
	line-height: 0;
}

/*2017.09.27 ADD*/

.header-r {
	float: right;
	display: flex;
	flex-wrap: wrap;
}

.header-3b{
	margin:0;
	padding:0;
	padding-top: 8px;
	list-style:none;
	overflow: hidden;
}
.header-3b li{
	float:left;
	overflow: hidden;
}
.header-3b li a{
    margin-right: 5px;
    padding: 3px 5px;
	font-weight: bold;
	font-size: 12.6px;
}
.header-3b li:first-child a{
}
.header-3b li:nth-child(2) a{
}
.header-3b li:last-child a{
}
.header-3b-s{
	margin:0;
	padding:0;
	list-style:none;
}
.header-3b-s li{
	float:left;
}
.header-3b-telarea{
	width: 240px;
	height: 70px;
	overflow: hidden;
	padding: 7px 0;
	text-align: center;
	background: #c00000;
	color: #fff;
}
.header-3b-tel{
	margin: 0;
	font-weight: bold;
	font-size: 28px;
	letter-spacing: 0.01em;
}
.header-3b-teltime{
	margin: 0;
	padding: 1px 0 1px 19px;
	font-size: 15.4px;
	font-weight: bold;
	padding-left: 19px;
	letter-spacing: 0.01em;
	background: url(../img/common/images/header_09.jpg) no-repeat 15px center #c00000;
}

.header-3b-ol {
	width: 220px;
	height: 70px;
	overflow: hidden;
}

.header-3b-ol a {
	display: block;
	padding: 7px 0;
	text-align: center;
	font-family: "游明朝", YuMincho;
	font-weight: bold;
	letter-spacing: -.4em;
	background: #f0c350;
}

.header-3b-ol-24 {
	display: inline-block;
	margin: 0;
	font-size: 14px;
	letter-spacing: 0;
	position: relative;
}

.header-3b-ol-24::before {
	content: '';
	width: 1px;
	height: 15px;
	background: #333;
	-moz-transform: rotate(-35deg);
	-webkit-transform: rotate(-35deg);
	-o-transform: rotate(-35deg);
	transform: rotate(-35deg);
	position: absolute;
	top: 0;
	left: -10px;
}

.header-3b-ol-24::after {
	content: '';
	width: 1px;
	height: 15px;
	background: #333;
	-moz-transform: rotate(35deg);
	-webkit-transform: rotate(35deg);
	-o-transform: rotate(35deg);
	transform: rotate(35deg);
	position: absolute;
	top: 0;
	right: -10px;

}

.header-3b-ol-as {
	margin: 0;
	font-size: 21px;
	line-height: 1.1;
	letter-spacing: 0;
}

.header-3b-ol-ap {
	display: inline-block;
    padding-right: 25px;
    margin: 0;
    font-size: 14px;
    letter-spacing: 0;
    background: url(../img/common/images/header_10.jpg) right 0px no-repeat;
    background-size: 22px;
}

.header-3b-hurry {
	width: 193px;
	height: 70px;
	padding: 10px 0;
	overflow: hidden;
	text-align: center;
	font-weight: bold;
	background: #434dae;
}

.header-3b-hurry-txt {
	margin: 0;
	color: #fff;
	font-size: 18.2px;
	padding-bottom: 2px;
}

.header-3b-hurry-tel {
	margin: 0;
	color: #f0c350;
	font-size: 22.4px;
	letter-spacing: 0.1em;
}

.site-header-contact {
	float: right;
	margin-right: 22px;
	display: table;
}

.site-header-contact-email {
	display: table-cell;
	vertical-align: middle;
	padding-left: 10px;
	line-height: 0;
}

.site-header-contact-tel_bn {
	display: table-cell;
	vertical-align: middle;
	padding-left: 10px;
	line-height: 0;
}

.site-header-contact-tel {
	display: table-cell;
	vertical-align: middle;
}

.site-header-contact-tel__title {
	margin: 0;
	font-size: 12px;
	font-weight: bold;
}

.site-header-contact-tel__number {
	margin: 0;
	font-size: 24px;
	font-weight: bold;
	color: #e00018;
	letter-spacing: 2px;
}

.site-header-contact-tel__time {
	margin: 0;
	font-size: 14px;
}


/*--------------------------------------------------------------
## Site nav
--------------------------------------------------------------*/
.site-nav {
    position: relative;
    height: 42px;
	/*	border-top: 1px solid #EEE;
	/*border-bottom: 1px solid #EEE;*/
}

.site-nav__list {
	display: table;
    position: absolute;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 1000px;
	border-left: 1px solid #EEE;
}

.site-nav__item {
	display: table-cell;
	width: 16.66666%;
}

.site-nav__item > a {
	display: block;
	position: relative;
	padding: 12px 8px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	color: #000;
	text-decoration: none;
	border-right: 1px solid #EEE;
	border-top: 1px solid #EEE;
}

.site-nav__item:hover > a,
.site-nav__item.active > a {
	color: #FFF;
	background: #414EAB;
	border-color: #414EAB;
}

/* 吹き出し */

/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
  position: relative;
  cursor: pointer;
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition:
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out,
    -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition:
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out,
    -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition:
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out,
    transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform:    translate3d(0, 0, 0);
  transform:         translate3d(0, 0, 0);
  pointer-events: none;
  z-index: 99999;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 4px 8px;
  width: 166px;
  background-color: #2A2F6D;
  color: #fff;
  content: attr(data-tooltip);
  font-size: 12px;
  line-height: 1.2;
}

/* Directions */

/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
  bottom: 100%;
  left: 50%;
}

[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #2A2F6D;
}

/* Horizontally align top/bottom tooltips */
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
  margin-left: -80px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
  -webkit-transform: translateY(-12px);
  -moz-transform:    translateY(-12px);
  transform:         translateY(-12px);
}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
  right: 100%;
  bottom: 50%;
  left: auto;
}

.tooltip-left:before {
  margin-left: 0;
  margin-right: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-left-color: #000;
  border-left-color: hsla(0, 0%, 20%);
}

.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
  -webkit-transform: translateX(-12px);
  -moz-transform:    translateX(-12px);
  transform:         translateX(-12px);
}

/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
  top: 100%;
  bottom: auto;
  left: 50%;
}

.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #000;
  border-bottom-color: hsla(0, 0%, 20%);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
  -webkit-transform: translateY(12px);
  -moz-transform:    translateY(12px);
  transform:         translateY(12px);
}

/* Right */
.tooltip-right:before,
.tooltip-right:after {
  bottom: 50%;
  left: 100%;
}

.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  -webkit-transform: translateX(12px);
  -moz-transform:    translateX(12px);
  transform:         translateX(12px);
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
  top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}

.site-nav__submenu {
	position: absolute;
	left: 0;
	z-index: 100;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	color: #000;
	background: #EEEEEE;
	transition: max-height 0.25s ease-in-out;
}

.site-nav__submenu a {
	color: #000;
}

.site-nav__submenu a:hover {
	color: #DDD;
}

.site-nav__item--dropdown:hover .site-nav__submenu {
	max-height: 370px;
}

.site-nav__item--dropdown:hover > a:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 200;
	margin-left: -12px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 12px 0 12px;
	border-color: #414EAB transparent transparent transparent;
}

.site-nav__item--dropdown:hover + .site-nav__submenu-backdrop {
	z-index: 99;
	background: rgba(0, 0, 0, 0.8);
}

/*--------------------------------------------------------------
## Megamenu
--------------------------------------------------------------*/
.megamenu {
	padding: 2px 0 20px;
}
.megamenu__title {
	margin: 0 0 18px 0;
	font-weight: normal;
	font-size: 15px;
	line-height: 21px;
	background: url(../img/common/megamenu-title.png) left center no-repeat;
	background-size: 21px 21px;
	padding: 20px 0 20px 36px;
	border-bottom: 1px solid #C7C7C7;
}

.menu-sell {
	overflow: hidden;
}

.menu-sell-service {
	float: left;
	width: 611px;
	background: #D1D1D1;
}

.menu-sell-service__title {
	margin: 18px 0;
	text-align: center;
	font-size: 13px;
}

.menu-sell-service__body {
	margin: 18px 69px;
	text-align: center;
}

.menu-sell-service__list {
	margin: 0 -24px;
	overflow: hidden;
}

.menu-sell-service__item {
	float: left;
	padding: 0 23px;
	letter-spacing: -.4em;
}

.menu-sell-service__item a {
	display: inline-block;
	padding: 98px 34px 26px;
	line-height: 0;
	letter-spacing: 0;
	border: 1px solid #c7c7c7;
	border-radius: 5px;
	overflow: hidden;
	vertical-align: top;
	background: url(../img/common/menu_arrow.png) right 10px center no-repeat #fff;
	position: relative;
}

.menu-sell-service__item a:hover {
	color: #333;
}

.menu-sell-service_takuhai a::before {
	content: '';
	display: inline-block;
	width: 47px;
	height: 37px;
	background: url(../img/common/menu_sell_service_delivery.png) center no-repeat;
	background-size: 100%;
	position: absolute;
	top: 36px;
	left: 50%;
	margin-left: -23px;
}

.menu-sell-service_shutcho a::before {
	content: '';
	display: inline-block;
	width: 43px;
	height: 35px;
	background: url(../img/common/menu_sell_service_pickup.png)  no-repeat;
	background-size: 100%;
	position: absolute;
	top: 36px;
	left: 50%;
	margin-left: -21px;
}

.menu-sell-service_shop a::before {
	content: '';
	display: inline-block;
	width: 34px;
	height: 29px;
	background: url(../img/common/menu_sell_service_store.png)  no-repeat;
	background-size: 100%;
	position: absolute;
	top: 36px;
	left: 50%;
	margin-left: -17px;
}

.menu-sell-service__assessment {
	margin-top: 20px;
}

.menu-sell-service__assessment a {
	display: block;
	text-align: center;
	background: url(../img/common/menu_arrow2.png) #fff001 right 10px center no-repeat;
	position: relative;
	color: #434dae;
	padding: 10px 0;
	letter-spacing: 0.05em;
	font-weight: bold;
}

.menu-sell-service__assessment a:hover {
	color: #434dae !important;
}

.menu-sell-service__assessment a::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 17px;
	background:  url(../img/common/menu_sell_service_assessment.png) no-repeat;
	position: absolute;
	top: 50%;
	left: 100px;
	margin-top: -9px;
}

.menu-sell-other {
	float: right;
	margin-right:180px;
}

.menu-sell-other__item {
	margin-bottom: 20px;
}

.menu-sell-other__item a {
	display: block;
	padding: 19px 29px;
	font-size: 1em;
	text-align: center;
	background: url(../img/common/menu_arrow.png) right 10px center #fff no-repeat;
	border: 1px solid #c6c6c6;
	border-radius: 5px;
}

.menu-sell-other__item a:hover {
	color: #333;
}

.menu-purchase {
	overflow: hidden;
}

.menu-purchase-store__title {
	margin: 0 0 6px;
	padding-top: 27px;
	font-weight: normal;
	text-align: center;
	background: url(../img/common/menu_purchase_store_title.png) no-repeat center top;
}

.menu-purchase-online__title {
	margin: 0 0 10px;
	padding-top: 27px;
	font-weight: normal;
	text-align: center;
	background: url(../img/common/menu_purchase_online_title.png) no-repeat center top;

}

.menu-purchase-store {
	float: left;
	width: 50%;
	border-right: 1px solid #C7C7C7;
	min-height: 172px;
}

.menu-purchase-store__body {
	width: 362px;
	margin: 0 auto;
}

.menu-purchase-store__list,
.menu-purchase-online__list {
	margin: -10px;
	overflow: hidden;
}

.menu-purchase-store__item,
.menu-purchase-online__item {
	float: left;
	width: 50%;
	padding: 10px;
}

.menu-purchase-store__item a {
	display: block;
	padding: 19px 29px;
	font-size: 1em;
	text-align: center;
	background: url(../img/common/menu_arrow.png) right 10px center #fff no-repeat;
	border: 1px solid #c6c6c6;
	border-radius: 5px;
}

.menu-purchase-online__item a {
	display: block;
	padding: 0px 47px;
	font-size: 1em;
	letter-spacing: -0.05em;
	text-align: left;
	background: url(../img/common/menu_arrow.png) right 40px center  no-repeat;
	position: relative;
}

.menu-purchase-online__item:first-child a::before {
	content: '';
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url(../img/common/menu_purchase_online_yahoo.png) left center no-repeat;
	position: absolute;
	top: -3px;
	left: 0;
}

.menu-purchase-online__item:nth-child(2) a::before {
	content: '';
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url(../img/common/menu_purchase_online.png) left center no-repeat;
	position: absolute;
	top: -3px;
	left: 0;
}

.menu-purchase-online__item:last-child a::before {
	content: '';
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url(../img/common/menu_purchase_online.png) left center no-repeat;
	position: absolute;
	top: -3px;
	left: 0;
}

.menu-purchase-store__item a:hover,
.menu-purchase-online__item a:hover {
	color: #333;
}

.menu-purchase-online {
	float: left;
	width: 50%;
}

.menu-purchase-online__body {
	margin: 0 3px 0 25px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
	padding: 26px 0;
	background: #424348;
	color: #FFF;
}

.site-footer-nav {
	float: left;
}

.site-footer-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}


.site-footer-nav__item {
	float: left;
	padding: 0 14px;
	border-left: 1px solid #FFF;
}

.site-footer-nav__item:first-child {
	border-left: none;
	float: left;
	padding-left: 0;
}

.site-footer-nav a {
	color: #FFF;
	text-decoration: none;
}

.site-footer-nav a:hover {
	text-decoration: underline;
}

.site-footer-copyright {
	float: right;
	margin: 0;
	font-size: 9px;
}

.site-footer-copyright small {
	font-size: 12px;
}

.pagetop {
	display: block;
	position: fixed;
	right: 240px;
	bottom: 40px;
	width: 66px;
	height: 66px;
	background: url(../img/common/pagetop.png) center center no-repeat;
	background-size: 66px 66px;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 10;
}

.pagetop.active {
	opacity: 1;
}

.pagetop.active:hover {
	opacity: 0.8;
}

.linelink {
	display: block;
	position: fixed;
	right: 320px;
	bottom: 40px;
	width: 66px;
	height: 66px;
	background: url(../img/common/linelink.png) center center no-repeat;
	background-size: 66px 66px;
	transition: opacity 0.4s ease;
	z-index: 10;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -ms-transition: 0.6s;
    transition: 0.6s;
}

.linelink:hover {
	opacity: 0.8;
}

@media screen and (max-width: 900px) {
	.pagetop {
		right: 20px;
	}
}


/*--------------------------------------------------------------
## Footer Widgets
--------------------------------------------------------------*/
.site-footer-widget {
	margin-top: 20px;
	background: #fff;
}

.site-footer-widget-content {
	margin: 0;
	overflow: hidden;
}

.site-footer-widget-blog,
.site-footer-widget-facebook {
	float: left;
	width: 50%;
	padding: 0 10px;
}

.blog-widget-title {
	margin: 0;
	padding: 0 20px;
	color: #FFF;
	background: #414349;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
}

.blog-widget-content {
	height: 360px;
	background: #FFF;
	overflow-y: auto;
}

.blog-widget-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.blog-widget-item {
	border-bottom: 1px solid #EEE;
}

.blog-widget-entry {
	padding: 18px 18px 0;
}

.blog-widget-entry__header {
	overflow: hidden;
}

.blog-widget-entry__image {
	float: left;
	width: 45%;
}

.blog-widget-entry__image img {
	width: 100%;
	height: auto;
}

.blog-widget-entry__title {
	margin: 0 0 0 49%;
	font-size: 18px;
}

.blog-widget-entry__date {
	display: block;
	margin: 6px 0 0 49%;
	font-size: 12px;
}


/*--------------------------------------------------------------
## Footer Links
--------------------------------------------------------------*/
.site-footer-links {
	padding: 12px 0 20px;
	background: #FF0000;
	color: #FFF;
}

.service-links__title {
	margin: 0 0 8px;
	font-weight: normal;
}

.service-links__list {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}

.service-links__item {
	float: left;
	margin-right: 10px;
	background: #FFF;
	line-height: 0;
}


/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.document-sidebar {
	padding: 20px 0;
	color: #FFF;
}

.document-sidebar a {
	color: #FFF;
	display: block;
	border-radius: 5px;
	overflow: hidden;
}

.document-sidebar a:hover {
	color: #CCC;
}

.sidebar-section__body {
	padding: 0 15px;
}

/* Sidebar social */
.sidebar-social {
	text-align: center;
}

.sidebar-social__body {
	display: inline-block;
}

.sidebar-social a {
	display: block;
	float: left;
	margin: 0 5px;
	width: 30px;
	height: 30px;
	background-size: 30px 30px;
	text-indent: 37px;
	white-space: nowrap;
	overflow: hidden;
}

.sidebar-social .twitter {
	background-image: url(../img/sidebar/twitter-icon.png);
}

.sidebar-social .facebook {
	background-image: url(../img/sidebar/facebook-icon.png);
}
.sidebar-social .line {
	background-image: url(../img/sidebar/line-icon.png);
}

.sidebar-social .rss {
	background-image: url(../img/sidebar/rss-icon.png);
}

/* Sidebar search */
.sidebar-search {
	margin-top: 20px;
}

.sidebar-search__label {
	display: block;
	margin-right: 26px;
	margin-bottom: 4px;
	text-align: center;
}

.sidebar-search__form {
	position: relative;
	margin: 0 auto;
	padding-right: 26px;
	max-width: 200px;
}

.sidebar-search__input {
	width: 100%;
	height: 27px;
	padding: 0 10px;
	color: #A9A8A8;
	border: 1px solid #CDCDCD;
	border-radius: 50px;
	background: #404141;
}

.sidebar-search__input:focus {
	outline: none;
}

.sidebar-search__submit {
	position: absolute;
	top: 1px;
	right: 0;
	border: none;
	width: 20px;
	height: 20px;
	background: url(../img/sidebar/search-icon.png);
	background-size: 20px 20px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* Sidebar ranking */
.sidebar-ranking {
	margin-top: 30px;
	padding: 20px 0;
	background: #000;
}

.sidebar-ranking__title {
	margin: 0;
	text-align: center;
	font-size: 16px;
	font-weight: normal;
}

.sidebar-ranking__body {
	text-align: center;
}

.sidebar-ranking__list {
	list-style: none;
	margin: 10px auto;
	padding: 0;
	text-align: left;
}

.sidebar-ranking__item {
	display: block;
	margin-bottom: 10px;
}

.sidebar-ranking__item p {
	display: inline-block;
	margin: 0;
	font-size: 15px;
	font-weight: 500;
}

.sidebar-ranking__item:first-child p {
	font-size: 20px;
}

.sidebar-ranking__item:last-child {
	margin-bottom: 0;
}

.sidebar-ranking__item span {
	padding-right: 0.2em;
}

.sidebar-ranking__more {
	display: block;
	position: relative;
	margin: 15px auto 0;
	padding: 5px 10px 4px 0;
	max-width: 200px;
	text-align: center;
	border: 1px solid #FFF;
	border-radius: 50px;
	font-size: 12px;
	letter-spacing: -1px;
}
.sidebar-ranking__more:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -5px;
	width: 5px;
	height: 10px;
	background: url(../img/sidebar/more-icon.png) center center no-repeat;
	background-size: 5px 10px;
}

/* Sidebar news */
.sidebar-news {
	margin: 20px 0;
}

.sidebar-news__title {
	position: relative;
	display: inline-block;
	margin: 0 0 0 -4px;
	background: #000;
	padding: 6px 16px 5px;
	font-size: 14px;
	font-weight: normal;
}

.sidebar-news__title:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 100%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 4px 4px 0;
	border-color: transparent #000000 transparent transparent;
}

.sidebar-news__list {
	list-style: none;
	margin: 8px 0;
	padding: 0;
	border-top: 1px solid #4A4C56;
}

.sidebar-news__item {
	padding: 14px 0;
	border-bottom: 1px solid #4A4C56;
}

.sidebar-news__item p {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
}

.sidebar-news__item .sidebar-news__entry__title {
	margin: 0 0 6px;
	font-size: 14px;
	line-height: 1.5;
}

.sidebar-news__item .sidebar-news__entry__excerpt {
	font-size: 12px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	max-height: 4.8em;
}

.sidebar-news__item .sidebar-news__entry__comment {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.sidebar-news__more {
	font-size: 13px;
}

.sidebar-news__more:after {
	content: '';
	display: inline-block;
	margin-left: 6px;
	width: 5px;
	height: 10px;
	background: url(../img/sidebar/more-icon.png) center center no-repeat;
	background-size: 5px 10px;
}


/* Sidebar banner */
.sidebar-banner__item {
	padding: 15px 0;
	line-height: 0;
	text-align: center;
}

@media screen and (max-width: 900px) {
	.sidebar-banner__body {
		overflow: hidden;
	}

	.sidebar-banner__item {
		float: left;
		width: 33.33333%;
		padding: 10px;
	}
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumb {
	background: #414349;
}

.breadcrumb__list {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	line-height: 30px;
}

.breadcrumb__item {
	display: block;
	float: left;
	font-size: 12px;
	color: #FFF;
}

.breadcrumb__item:before {
	content: "\f105";
	font-family: FontAwesome;
	color: #FFF;
	padding: 0 0.8em;
	vertical-align: middle;
}

.breadcrumb__item:first-child:before {
	display: none;
}

.breadcrumb__item a,
.breadcrumb__item a:visited,
.breadcrumb__item a:hover {
	color: #FFF;
}


/*--------------------------------------------------------------
# Wordpress Common
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.wp-pagenavi {
	text-align: center;
	margin: 30px 0;
}

.wp-pagenavi span,
.wp-pagenavi a {
	display: inline-block;
	margin: 0 3px;
	padding: 3px 6px;
	font-size: 16px;
	color: #000;
	background: #FFF;
	border: 5px solid #EFEFEF;
	box-sizing: border-box;
	text-decoration: none;
}

.wp-pagenavi span.current {
	color: #FFF;
	background: #434DAC;
	border-color: #434DAC;
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
	padding-left: 9px;
	padding-right: 9px;
	color: #FFF;
	background: #404348;
	border-color: #404348;
}

.wp-pagenavi a.previouspostslink {
	margin-right: 13px;
}

.wp-pagenavi a.nextpostslink {
	margin-left: 13px;
}

.wp-pagenavi a:link:hover {
	opacity: 0.8;
}

.wp-pagenavi span.extend { display: none;}

.wp-pagenavi span.extend:nth-of-type(2),
.wp-pagenavi span.extend:nth-last-of-type(2) { display: inline-block;}

/*
.pagination {
margin: 30px 0;
}

.pagination .nav-links {
text-align: center;
}

.pagination .page-numbers {
display: inline-block;
margin: 0 3px;
padding: 3px 6px;
font-size: 16px;
color: #000;
background: #FFF;
border: 5px solid #EFEFEF;
box-sizing: border-box;
text-decoration: none;
}

.pagination .page-numbers.current {
color: #FFF;
background: #434DAC;
border-color: #434DAC;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
padding-left: 9px;
padding-right: 9px;
color: #FFF;
background: #404348;
border-color: #404348;
}

.pagination .page-numbers.prev {
margin-right: 13px;
}

.pagination .page-numbers.next {
margin-left: 13px;
}

.pagination .page-numbers:link:hover {
opacity: 0.8;
}
*/

/*--------------------------------------------------------------
# Tab
--------------------------------------------------------------*/
.tab-content {
	display: none;
}


/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/
.basic-slider .owl-prev {
	display: block;
	position: absolute;
	top: 50%;
	left: -16px;
	z-index: 10;
	margin-top: -16px;
	width: 32px;
	height: 32px;
	background: url(../img/home/recent/prev.png) center center no-repeat;
}

.basic-slider .owl-next {
	display: block;
	position: absolute;
	top: 50%;
	right: -16px;
	z-index: 10;
	margin-top: -16px;
	width: 32px;
	height: 32px;
	background: url(../img/home/recent/next.png) center center no-repeat;
}



/*--------------------------------------------------------------
# Page Common
--------------------------------------------------------------*/
/* Header */
.page-header {
	margin-bottom: 20px;
}

/* Hero */
.page-hero {
	background-repeat: no-repeat;
	background-size: auto;
	background-position: right center;
	background-color: #E8E9EB;
}

.page-hero__content {
	display: table;
	width: 100%;
	margin-bottom:1em;
	vertical-align: middle;
}

.page-hero__align {
	display: table-cell;
	vertical-align: middle;
}

.page-hero__title {
	margin: 0;
	font-size: 31px;
	font-weight: bold;
}

.page-hero__title .badge {
	position: relative;
	top: -3px;
	display: inline-block;
	color: #FFF;
	background: #FF0000;
	margin: 0 8px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	padding: 7px 22px;
	vertical-align: middle;
}

.page-hero__description {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
}

.page-hero__title + .page-hero__description {
}

/* Footer */
.page-footer {
	margin-top: 70px;
}

/**/
.assessment-navi {
	padding: 20px 0;
	background: #414DAB;
}

.assessment-navi__title {
	margin: 7px 0 16px;
	font-size: 26px;
	font-weight: normal;
	color: #FFF;
	text-align: center;
}

.assessment-navi__content {
	padding: 0;
	margin: 0;
	overflow: hidden;
}

.assessment-navi__web,
.assessment-navi__tel {
	float: left;
	width: 50%;
	padding: 0;
	text-align: center;
	box-sizing: border-box;
	color:#fff;
}

.assessment-navi__web a,
.assessment-navi__tel a {
	display: inline-block;
	width: 18em;
	margin: 0 auto;
	padding:1em;
	background:#fc0;
	font-size:1.2em;
	font-weight:bold;
	border-radius: 0.5em;
	border-bottom: solid 4px #dfa620;
}

/* 矢印アイコンと日付付きの見出し */
.article-header {
	display: table;
	width: 100%;
	background: #EDEDED;
	margin: 0 0 20px 0;
}

.article-header__title {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	padding: 10px 20px 10px 44px;
	font-size: 16px;
	color: #414DAB;
}

.article-header__title:before {
	position: absolute;
	top: 11px;
	left: 20px;
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 5px solid #414DAB;
	border-radius: 16px;
}

.article-header__date {
	display: table-cell;
	text-align: right;
	vertical-align: middle;
	padding: 10px 20px;
}

/* 地図埋め込み */
/*
.google-maps {
position: relative;
padding-bottom: 62.5%;
height: 0;
overflow: hidden;
}

.google-maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}
*/
.google-maps iframe {
	width: 100%;
}

/* MW WP Form */
.mw_wp_form .validationMessage {
	display: inline-block;
	padding: 3px 8px;
	font-size: 12px;
}
.mw_wp_form .error {
	color: #FF0000;
	background-color: #FBE1E1;
	font-size: inherit;
}
.mw_wp_form .error input[type="text"],
.mw_wp_form .error input[type="email"],
.mw_wp_form .error input[type="password"],
.mw_wp_form .error select {
	background-color: #FBE1E1 !important;
	background-image: url('../img/common/icon_error.png') !important;
	background-repeat: no-repeat !important;
	background-position: right center !important;
}
.mw_wp_form .valid {
	background-color: #A4EFAE;
}
.mw_wp_form .valid input[type="text"],
.mw_wp_form .valid input[type="email"],
.mw_wp_form .valid input[type="password"],
.mw_wp_form .valid select {
	background-color: #F1FDDB !important;
	background-image: url('../img/common/icon_valid.png') !important;
	background-repeat: no-repeat !important;
	background-position: right center !important;
}
.mw_wp_form .valid .validationMessage {
	display: none;
}

.mw_wp_form span.error {
	display: inline-block;
	padding: 3px 8px;
	font-size: 12px;
}

.mw_wp_form_input .hidden-input {
	display: none !important;
}

.mw_wp_form_confirm .hidden-confirm,
.mw_wp_form_confirm .required,
.mw_wp_form_confirm .example {
	display: none !important;
}

.site-footer.container{
	width: 880px;
}

.header_banner{
	background-image:url(../img/common/takuhai_bg.jpg);
	background-repeat : repeat-x;
	letter-spacing: -.4em;
	text-align: center;
}

.banner_title {
	display: inline-block;
	text-align: center;
	padding: 40px 0 0;
	font-size: 45px;
	font-weight: bold;
	letter-spacing: 0.2em;
	color: #fff;
	text-shadow: #152370 2px 0px 0px, #152370 -2px 0px 0px,
	#152370 0px -2px 0px, #152370 0px 2px 0px,
	#152370 2px 2px 0px, #152370 -2px 2px 0px,
	#152370 2px -2px 0px, #152370 -2px -2px 0px,
	#152370 1px 2px 0px, #152370 -1px 2px 0px,
	#152370 1px -2px 0px, #152370 -1px -2px 0px,
	#152370 2px 1px 0px, #152370 -2px 1px 0px,
	#152370 2px -1px 0px, #152370 -2px -1px 0px,
	#152370 1px 1px 0px, #152370 -1px 1px 0px,
	#152370 1px -1px 0px, #152370 -1px -1px 0px;
	position: relative;
}

.banner_title::before {
	content: '';
	display: inline-block;
	width: 120px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 65px;
	left: -140px;
}

.banner_title::after {
	content: '';
	display: inline-block;
	width: 120px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 65px;
	right: -132px;
}

.banner_main {
	background:url(../img/common/takuhai_banner.jpg) no-repeat center 0;
	text-align: center;
	padding: 0px 0 45px;
}

.takuhai_p {
	display: inline-block;
	width: 974px;
	letter-spacing: 0;
	text-align: left;
	line-height: 1.2;
	font-weight: bold;
	font-size: 20px;
}

.takuhai_p_left {
	display: inline-block;
	width: 554px;
	letter-spacing: 0;
	padding: 12px 0 0 83px;
	width: 554px;
	display: inline-block;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: top;
	position: relative;
}

.takuhai_p_right {
	display: inline-block;
	padding-top: 20px;
	letter-spacing: 0;
	vertical-align: top;
	position: relative;
}

.takuhai_p_txt {
	letter-spacing: -0.07em;
}

.takuhai_p_txt_red {
	color: #de3629;
}

.takuhai_p_txt_small {
	font-size: 12px;
}

.takuhai_p_right .takuhai_p_txt {
	margin: 15px 0;
}

.takuhai_p_txt_0 {
	position: absolute;
	top: 19px;
	right: 97px;
	font-size: 30px;
	letter-spacing: -0.2em;
	color: #DA8E00;
	background: -webkit-linear-gradient(-45deg, #F7DE05, #DA8E00, #EDAC06, #F7DE05, #ECB802, #DAAF08, #B67B03, #DA8E00, #EDAC06, #F7DE05, #ECB802, #EDAC06);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.takuhai_p_postage {
	position: absolute;
	top: 64px;
	right: -26px;
	color: #fff;
	font-size: 20px;
	line-height: 1.1;
	text-align: center;
}

.takuhai_p_postage_small {
	font-size: 10px;
}


/*190205*バナー変更の際*/
.header_top_banner{

}


.banner_top_title {
	text-align: center;
	/* padding: 0px 0 25px; */
	/*border: 3px solid #131313;*/
}

.banner_top_main {
	text-align: center;
	/*padding-top: 75px;*/
}

.top_banner_mid{
	margin-bottom: 40px;
}


.addtoany_list {
	display: inline-block;
	border: 1px solid #ccc;
	padding: 10px;
}

.addtoany_list:before {
	content: 'SHARE';
	padding-right: 4px;
}

.addtoany_list a {
	line-height: 0;
}

.kikkake{
	width: 840px;
}

.kikkake .horizontal-item:nth-child(8){
	margin: 0px !important;
}

.kikkake .horizontal-item{
	margin-bottom: 10px;
}


/*--------------------------------------------------------------
# 仮査定0328

.mw_wp_form_confirm_body .form-group div{
font-size: 18px;
font-weight: bold;
background-color: #EDEDED;
padding: 20px;
}
--------------------------------------------------------------*/
.mw_wp_form_confirm_body .assessment-info div{
	font-size: 18px;
}
.mw_wp_form_confirm_body .form-group{
	padding: 20px;
}


/*追加*/

.pc-center{

	text-align:center;
	margin-top: 15px;
}


.purchase-awase{
	background-color:#ffffff;
	padding:30px 0 0;
}

.purchase-awase h3{
	margin:0;
	padding:0;
	color:#000;
	vertical-align:top;
}

.form-error-message {
	margin: 1em auto;
	width: 880px;
	text-align: center;
	color: #f00;
	font-size: 16px;
	border: 1px solid #f00;
	padding: 0.5em;
}

/*求人募集レイアウト*/
.job{
	font-size: 30px;
	font-weight: bold;
}

/* -------------------------------------------------- */
/* main_add.css */
/* -------------------------------------------------- */
.document-column-wrapper{
	background-image:none !important;
}
.header-3b a:hover{
	opacity:0.7;
}
#hedding .page-hero .page-hero__title{
	background-image:none;
	background-color:#E8E8EA;
	line-height:71px;
	height:71px;
}
.page-header{
	margin-bottom:30px !important;
}
.page-west_03 #hedding.page-hero {
	background-image:none;
	background-color:#E8E8EA;
	line-height:70px;
	height:70px;
}
.page-west_03 #hedding .page-hero__content{
	height:70px;
}

.purchase-product-slider-section{
	background-color:#EBEDFD !important;
}
/*
.purchase-small-banner div.small-btn.clearfix{
width:252px;
float:right;

}
.purchase-small-banner .small-btn div.float-left{
margin:0 0 0 0;
float:none;
width:100%;
border-top:none 0;
border-right:solid 4px #eeeeee;
border-bottom:solid 4px #eeeeee;
border-left:solid 4px #eeeeee;
}
.purchase-small-banner .small-btn div.float-right{
margin:0 0 0 0;
float:none;
width:100%;
border-right:solid 4px #eeeeee;
border-bottom:solid 4px #eeeeee;
border-left:solid 4px #eeeeee;
}
*/

.purchase-small-banner div img{
	width:100%;
	height:auto;
	/*border:solid 4px #eeeeee;*/
}
.purchase-howto{
	background-color:#E8E8EA;
	padding:50px 40px;
}
.purchase-howto h2{
	width:1000px;
	margin:0 auto 30px;
}
.purchase-howto .purchase-howto-txt{
	width:1000px;
	margin:0 auto 60px;
	color:#313A96;
	font-size:30px;
	font-weight:bold;
	line-height:1.5em;
	text-align:center;
}
.purchase-howto.level-3 p{
	margin:0 auto 40px;
}
.purchase-howto .float-left{
	width:270px;
	margin:0 38px 0 0;
}
.purchase-howto .inner{
	width:575px;
	overflow:hidden;
	margin:auto;
}

/*買取強化中*/
.purchase-kyouka{
	background:#ffeff0;
	padding:0 0 40px;
	margin:0;
}
.purchase-kyouka_title {
	margin-bottom: 45px;
	background:url(../img/product_category/kyouka_title_bg.jpg) center top;
	position: relative;
}

.purchase-kyouka_title::before {
	content: '';
	width: 174px;
	height: 35px;
	position: absolute;
	background: url(../img/product_category/kaitori_kyouka_title_arrow.jpg) no-repeat;
	bottom: -35px;
	left: 50%;
	margin-left: -87px;
}

.purchase-kyouka h2{
	width:1100px;
	margin:0 auto 10px;
	text-align: center;
	position: relative;
}

.purchase-kyouka .purchase-kyouka_tit_now {
	display: inline-block;
	padding: 49px 33px;
	font-size: 33px;
	font-weight: bold;
	line-height: 1.2;
	position: absolute;
	top: 0px;
	left: 50px;
	background: url(../img/product_category/kaitori_kyouka_title_circle.png) no-repeat;
}

.purchase-kyouka .purchase-kyouka_tit_dot {
	font-size: 40px;
	font-weight: bold;
	color: #fff;
	display: inline-block;
	letter-spacing: 0;
	padding-left: 216px;
	padding: 120px 0 0 216px;
	background: url(../img/product_category/kaitori_kyouka_titleーdot.jpg) 235px 100px no-repeat;
}

.purchase-kyouka .purchase-kyouka_tit_main {
	font-size: 90px;
	font-weight: bold;
	color: #fff;
	display: inline-block;
}

.purchase-kyouka .purchase-kyouka_unwanted {
	background: url(../img/product_category/kaitori_kyouka_title_circle.png) no-repeat;
    background-size: contain;
    padding: 39px 43px;
}

.purchase-kyouka .purchase-kyouka_tit_unwanted {
	padding: 70px 0 16px 216px;
	background: none;
	vertical-align: middle;
}

.purchase-kyouka .purchase-kyouka_tit_mainunwanted {
	vertical-align: middle;
	padding-top: 50px;
}

.purchase-kyouka ul{
	background-color:#fff;
	width:1000px;
	margin:0 auto 0;
	padding:40px 90px 1px;
}
.purchase-kyouka ul li{
	margin-bottom:50px;
}

.product_is_hot .thumb{
	width:378px;
	height:auto;
	/*height:230px;*/
	float:left;
	overflow:hidden;
	border:solid 1px #d1d1d1;
	margin:0 25px 0 0;
}
.product_is_hot .thumb img{
	width:100%;
	height:auto;
}

.product_is_hot h4{
	margin:0;
	padding:0;
	line-height: 2em;
}
.product_is_hot h4 span{
	color:#3d3d3d;
	font-size:24px;
	font-weight:normal;
	background: linear-gradient(transparent 55%, #f7bec5 55%);
}
.product_is_hot p{
	color:#3d3d3d;
	font-size:14px;
	line-height: 1.5em;
}

.commentary_btn {
	display: inline-block;
}

.commentary_btn .commentary_link {
	display: inline-block;
	width: 412px;
	font-size: 19px;
	padding: 6px 0;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.01em;
	border-radius: 5px;
	color: #414eab;
	background: url(../img/home/easy/item_arrow2.png) right 10px center
	#fff000 no-repeat;
	position: relative;
	padding-left: 29px;
}

.commentary_btn .commentary_link::before {
	content: '';
	display: inline-block;
	width: 32px;
	height: 23px;
	background: url(../img/home/easy/item_pc.png);
	background-size: auto;
	background-size: 100%;
	position: absolute;
	top: 16px;
	left: 34px;
}

.commentary_btn .commentary_link:hover {
	opacity: 0.7;
}

/*主な買取カテゴリー*/
.purchase-category{
	background-color:#414eac;
	padding:30px 0 0;
}
.purchase-category .inner{
	width:1000px;
	margin:0 auto;
}
.purchase-category h3{
	margin:0;
	padding:0;
	color:#fff;
	vertical-align:top;
}
.purchase-category h3 .title{
	display:inline-block;
	background:#000;
	padding:.7em 1em;
	font-size:18px;
	font-weight:normal;
	border-radius:3px;
	margin-right:20px;
	margin-top:8px;
	float:left;
}
.purchase-category h3 .title_detail{
	display:inline-block;
	font-size:48px;
	float:left;
}
.purchase-category-nav{
	margin:1.5em 0;
	padding:0;
	list-style:none;
}
.purchase-category-nav li{
	float:left;
	color:#fff;
	font-size:16px;
}
.purchase-category-nav li a{
	color:#fff;
}
.purchase-category-nav li a:hover,.purchase-category-nav li a:focus,.purchase-category-nav li a:active{
	color:#0CF;
}
.purchase-category-nav li a.active{
	color:#0CF;
}
.purchase-category-nav li:after{
	content:"/";
	display:inline-block;
	margin:0 1em;
}
.purchase-category-browse-section__body{
	background:none !important;
}
.purchase-category-browse-nav{
	width:100% !important;
	float:none !important;
}
.purchase-category-browse-content{
	margin-left:0 !important;
}
.purchase-category-browse-content__item{
	width:20% !important;
	color:#fff;
}
.purchase-category-browse-section,.assessment-navi{

}
.site-footer{
	margin-right:0 !important;
}
/* float関連 */
.clearfix:before, .clearfix:after {
	content:"";
	display:table
}
.clearfix:after { clear:both }
.clearfix { zoom:1 }

.float-left{
	float:left;
}
.float-right{
	float:left;
}



/* 悩み */
.purchase-nayami{
	background-color:#ebeeff;
	padding:1px;
}

.purchase-nayami-tit {
	margin: 0;
	padding-bottom: 62px;
	font-size: 42px;
	letter-spacing: -0.01em;
	text-align: center;
	font-weight: normal;
	background: url(../img/product_category/nayami_title_under.jpg) 0 bottom no-repeat;
}

.purchase-nayami-tit-dot {
	display: inline-block;
	padding-top: 32px;
	letter-spacing: 0;
	font-weight: bold;
	font-size: 49px;
	color: #293899;
	position: relative;
}

.purchase-nayami-tit-dot::before {
	content: '';
	width: 108px;
	height: 11px;
	background:  url(../img/product_category/nayami_title.jpg) 0 0 no-repeat;
	position: absolute;
	top: 10px;
	left: 16px;
}

.purchase-nayami.level-3{
	margin-top:40px;
	background-color:#fff;
	padding:1px;
}
.purchase-nayami p{
	width:880px;
	margin:0 auto 70px;
}
.purchase-nayami .inner{
	width:1000px;
	margin:70px auto 40px;
	background-color:#fff;
	padding:30px 60px;
}
.purchase-nayami li {
	height:66px;
	line-height:66px;
	padding:0 20px;
}
.purchase-nayami li:nth-child(2n+1) {
	background-color:#eeeeee;
}
.purchase-nayami li span{
	/*display:inline-block;*/
	margin-left:1em;
	font-size:22px;
	line-height:66px;
	color:#404dab;
}

/* カンタン */
.kari-assessment {
	width: 880px;
	padding-bottom: 43px;
	margin: 0 auto;
	position: relative;
}

.kari-assessment2 {
	margin-top: -60px;
}

.kari-assessment-link {
	display: block;
	padding: 5px 0;
	background: url(../img/product_category/solution.jpg) 0 0 no-repeat;

}

.kari-assessment-link2 {
	display: block;
	padding: 70px 0 0;
	background: url(../img/product_category/karisatei.jpg) 0 0 no-repeat;
}

.kari-assessment-link3 {
	display: block;
	padding: 5px 0;
	background: url(../img/product_category/solution3.png) 0 0 no-repeat;
	position: relative;
}

.kari-assessment-link:hover {
	opacity: 0.7;
}

.kari-assessment-tit {
	margin: 0 !important;
	text-align: center;
	font-size: 35px;
	font-weight: bold;
	line-height: 1.1;
	color: #28369c;
}

.kari-assessment-tit2 {
	color: #000;
	padding: 0 0 5px 174px;
	font-size: 28px;
}

.kari-assessment-tit2 .kari-assessment-large {
	font-size: 40px;
}

.kari-assessment-large {
	font-size: 46px;
}

.kari-assessment-24 {
	margin: 0 !important;
	text-align: center;
	font-size: 38px;
	font-weight: bold;
	line-height: 1;
	color: #ffee03;
	text-shadow:
	#28369c 2px 0px,  #28369c -2px 0px,
	#28369c 0px -2px, #28369c 0px 2px,
	#28369c 2px 2px , #28369c -2px 2px,
	#28369c 2px -2px, #28369c -2px -2px,
	#28369c 1px 2px,  #28369c -1px 2px,
	#28369c 1px -2px, #28369c -1px -2px,
	#28369c 2px 1px,  #28369c -2px 1px,
	#28369c 2px -1px, #28369c -2px -1px;
}

.kari-assessment-24-2 {
	font-size: 33px;
}

.kari-assessment-24-3 {
	position: absolute;
	top: 84px;
	left: 43px;
	font-size: 38px;
}

.kari-assessment-list {
	padding: 0 0 120px 270px;
}

.kari-assessment-list2 {
	padding: 3px 0 120px 179px;
	margin: 0;
}

.kari-assessment-list3 {
	padding: 19px 0 120px 270px;
}

.kari-assessment-list4 {
	padding: 127px 0 120px 270px;
}

.kari-assessment-list5 {
	padding: 16px 0 108px 179px;
	margin: 0;
}

.kari-assessment-item {
	display: inline-block;
	padding-right: 50px;
	padding: 3px 33px 0 !important;
	height: auto !important;
	font-size: 26px;
	font-weight: bold;
	line-height: 1 !important;
	color: #ffee03;
	background: none !important;
}

.kari-assessment-item:last-child {
	padding-left: 43px !important;
}

.kari-assessment-item:hover {
	color: #ffee03;
}

.kari-assessment-kotira {
	width: auto !important;
	margin: 0 !important;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.02em;
	position: absolute;
	top: 198px;
	left: 370px;
}

.kari-assessment-kotira2 {
	font-size: 19px;
	position: absolute;
	top: 140px;
	left: 364px;
}

.kari-assessment-web {
	width: auto !important;
	margin: 0 !important;
	font-size: 37px;
	font-weight: bold;
	color: #28369c;
	text-shadow:
	#fff 2px 0px,  #fff -2px 0px,
	#fff 0px -2px, #fff 0px 2px,
	#fff 2px 2px , #fff -2px 2px,
	#fff 2px -2px, #fff -2px -2px,
	#fff 1px 2px,  #fff -1px 2px,
	#fff 1px -2px, #fff -1px -2px,
	#fff 2px 1px,  #fff -2px 1px,
	#fff 2px -1px, #fff -2px -1px;
	position: absolute;
	top: 227px;
	left: 272px;
}

.kari-assessment-web2 {
	font-size: 35px;
	position: absolute;
	top: 168px;
	left: 270px;
}

.tel-assessment-btn {
	width: 880px;
	margin: 0 auto;
	background: url(../img/product_category/satei_tel2.png) no-repeat 0 0;
}

.tel-assessment-btn-link {
	display: block;
	padding: 16px 0;
	color: #fff;
}

.tel-assessment-btn-link:hover {
	color: #fff;
	opacity: 0.7;
}

.tel-assessment-btn-link-top {
	width: 526px;
	margin: 0 auto;
	font-size: 25px;
	font-weight: bolder;
}

.tel-assessment-btn-link-left {
	float: left;
}

.tel-assessment-btn-link-right {
	float: right;
}

.tel-assessment-btn-link-telnum {
	width: auto !important;
	margin: 0 !important;
	text-align: center;
	font-size: 60px;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	text-shadow:1px 3px 3px #000000;
}

/* ブランド　Q&A */
.brands-tit {
	font-size: 40px !important;
}

.brandLists-item {
	display: block;
	float: left;
	width: 105px;
	padding: 10px 15px;
	box-sizing: content-box;
}
.brandLists-item-image {
	height: 40px;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	line-height: 0;
}
.purchase-brand{
	width:1000px;
	margin:60px auto;
	margin-bottom:70px !important;
	overflow:hidden;
}
.purchase-faq {
	width:1000px;
	margin:60px auto 10px;
	overflow:hidden;
}
.purchase-brand h3 ,.purchase-faq h3 {
	margin:0 0 30px;
}
.purchase-brand .brandLists-item{
	padding:0 !important;
	margin-right:61px !important;
}
.brandLists-list{
	margin:0 !important;
	margin-left:30px !important;
	width:1000px;
}

.staff_blog h3{
	width:1000px;
	margin:auto;
	padding:5px 0;
}
.staff_blog .title{
	display:block;
	float:left;
}
.staff_blog .list_link{
	float:right;
	display:block;
	background:#fff;
	border-radius:10px;
	font-size:13px;
	line-height:1.8em;
	padding:0 1em;
	margin-top:5px;
	font-weight:normal;
}
.staff_blog .list_link a:after{
	content:">";
	display:inline-block;
	margin-left:.5em;
	float:right;
}

.staff_blog .blog_title{
	color:#fff;
	font-size:16px;
	line-height:2em;
	background-color:#2d363f;
}

.staff_blog .blog_content{
	background-color:#f6f6f6;
	padding:20px;
}
.staff_blog .blog_content .inner{
	width:1000px;
	overflow:hidden;
	margin:auto;
}
.staff_blog .blog_content ul {
	width:1100px;
}
.staff_blog .blog_content ul li {
	float:left;
	width:323px;
	margin-right:20px;
	color:#3d3d3d;
}
.staff_blog .blog_content ul li .image {
	width:320px;
	height:220px;
	overflow:hidden;
}
.staff_blog .blog_content ul li .title {
	font-size:22px;
	line-height:1.5em;
	float:none;
}
.staff_blog .blog_content ul li .category span {
	min-width:130px;
	background-color:#7e8389;
	border-radius:3px;
	display:inline-block;
	color:#fff;
	text-align:center;
	line-height:28px;
}
.staff_blog .blog_content ul li .date {
	background-image:url(../img/product_category/timer_ico.jpg);
	background-repeat:no-repeat;
	background-position:left center;
	padding-left:1.5em;
}

.purchase-faq-tit {
	position: relative;
	font-size: 60px;
}

.purchase-faq .purchase-faq-qa {
	font-size: 60px;
	font-family: "游明朝", YuMincho;
}

.purchase-faq .purchase-faq-yokuaru {
	font-size: 15px;
	text-shadow: none;
	font-family: "游明朝", YuMincho;
	color: #000;
	position: absolute;
	top: 60px;
	left: 520px;
}

.purchase-faq dl{
	margin-bottom:20px;
}

.purchase-faq dt{
	/*min-height:50px;*/
	font-size:18px;
	font-weight:bold;
	color:#414eab;
	border:1px solid #ccc;
	padding: 14px 10px 14px 52px;
	background:url(../img/faq/icon_q.jpg) no-repeat 8px center;
}

.purchase-faq dd{
	min-height:50px;
	font-size:16px;
	min-height:88px;
	padding: 14px 10px 14px 54px;
	background:url(../img/faq/icon_a.jpg) no-repeat 9px 14px;
	margin-left:0;
}

.purchase-faq dd .anno{
	font-size:13px;
	margin-top:10px;
	text-indent:-1em;
	padding-left:1em;
}

.purchase-faq a{
	color:#414eab;
	text-decoration:underline;
}





/*
.purchase-faq dl{
width:880px;
margin:0 auto;
}
.purchase-faq dt.question{
border:solid 2px #ccc;
padding:8px;
color:#404dab;
font-size:18px;
margin-bottom:20px;
font-weight:bold;
}
.purchase-faq dt.question:before{
content:"Q";
display:inline-block;
background-color:#404dab;
font-size:20pt;
padding:5px 10px;
color:#fff;
margin-right:.5em;
font-weight:bold;
}
.purchase-faq dt.answer{
font-size:18px;
}
.purchase-faq dt.answer:before{
content:"A";
display:inline-block;
border:solid 1px #e00018;
font-size:20pt;
padding:5px 10px;
color:#e00018;
margin-right:.5em;
margin-left:9px;
margin-bottom:30px;
font-weight:bold;
float:left;
}
.purchase-brand h3{
}

*/


/*大バナースライダー*/
.slidecontainer {
	margin: 0 auto 30px;
	width: 1000px;
}
.level-3_btn_container{
	margin:0 auto;
	width:1000px;
}
.slidecontainer.level-3 {
	margin: 0;
	width: 726px;
	float:left;
}
.slidecontainer.level-3 .single-item {
	width:726px;
	float:left;
}
.slick-slide {
	text-align: center;
	color: #419be0;
	background: white;
}

/* 少バナー　*/
.purchase-small-banner{
	width:1000px;
	margin:50px auto 40px;
}
.purchase-small-banner div{
	margin:0 10px 10px 0;
	width:487px;
	height:168px;
}
.purchase-small-banner div.float-left{
	border:solid 4px #eeeeee;
}
.purchase-small-banner div.float-right{
	margin:0 0 10px 0;
	border:solid 4px #eeeeee;
}
.purchase-small-banner div.clearfix{
	width:100%;
}
.purchase-small-banner-level-3{
	width:254px;
	float:right;
	border-top:solid 4px #eeeeee;
}
.purchase-small-banner-level-3 div{
	border-right:solid 4px #eeeeee;
	border-bottom:solid 4px #eeeeee;
	border-left:solid 4px #eeeeee;
}
/*
.small-btn {
float:left;
width:247px;
}
.small-btn {
float:right;
width:247px;
}
.small-btn div img{
width:100%;
height:auto;
margin:0 !important;
margin-bottom:0;
}
.small-btn div{
margin-bottom:0;
}
.level-3 .purchase-small-banner{
margin:0;
padding:0;
width:250px;
float:right;
}

.level-3 .purchase-small-banner div{
width:100%;
height:92px !important;
margin:0 0;
}
.level-3 .purchase-small-banner div.float-right{
float:left;
}

*/


.takuhai_kaitori_level3{
	width:1000px;
	height:418px;
	margin:0 auto 40px;
	background-image:url(../img/product_category/takuhai_kaitori_level3.jpg);
}
.shuttyou_kaitori_level3{
	width:1000px;
	height:418px;
	margin:0 auto 40px;
	background-image:url(../img/product_category/shuttyou_kaitori_level3.jpg);
}
.tentou_kaitori_level3{
	width:1000px;
	height:418px;
	margin:0 auto 40px;
	background-image:url(../img/product_category/tentou_kaitori_level3.jpg);
}
.kaitori2 ul{
	position:absolute;
}
.kaitori2 p{
	font-size:14px;
	font-weight:normal;
	color:#000;
	position:relative;
	top:180px;
	left:147px;
	width:587px;
	height:88px;
	text-align:left;
	overflow:hidden;
}
.kaitori2 ul .detail a{
	display:block;
	padding: 11px 0;
	position:relative;
	top:310px;
	left:80px;
	width:223px;
	height:46px;
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	border: 2px solid #000;
	background: url(../img/product_category/takuhai_kaitori_level-3_07.jpg) no-repeat right 10px center #fff ;
	overflow:hidden;
	border-radius: 10px;
}
.kaitori2 ul .detail a:hover{
	opacity: 0.7;
}
.kaitori2 ul .satei a{
	display:block;
	position:relative;
	top:264px;
	left:356px;
	width:587px;
	height:46px;
	background-image:url(https://reuse-west.com/wp/wp-content/uploads/2017/12/takuhai_kaitori_level-3_09.jpg);
	/*background-image:url(../img/product_category/takuhai_kaitori/takuhai_kaitori_level-3_09.jpg);*/
	text-indent:-9999px;
	overflow:hidden;
}
.kaitori2 ul .satei a:hover{
	opacity: 0.7;
}
.point {
	width:880px;
	margin:auto;
}
.point h2{
	margin:0 0 25px !important;
	text-align:center;
	font-size:43px;
	font-weight:bold;
	color:#3d3d3d;
}
.point h2 span{
	font-size:32px;
}
.point ol{
	padding:0 0 25px!important;
}
.purchase-product-slider-item__image{
	width:184px !important;
	height:184px !important;
}
.page-west_03_03 .category{
	width:auto !important;
	background-color:none;
}

.kaitori2 {
	position: relative;
}

.kaitori2 .kaitori2-circle {
	width: 96px;
	height: 96px;
	padding: 23px 0;
	font-size: 20px;
	letter-spacing: 0.1em;
	font-weight: bold;
	text-align: center;
	color: #fff;
	background: #e3001b;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	top: 15px;
	left: 260px;
}

.kaitori2 .kaitori2-tit {
	font-size: 37px;
	font-weight: bold;
	letter-spacing: 0.15em;
	color: #fff;
	position: absolute;
	top: 40px;
	left: 418px;
}

.kaitori2 .kaitori2-check-p {
	display: inline-block;
	width: auto;
	height: auto;
	font-weight: bold;
	font-size: 36px;
	line-height: 1;
	letter-spacing: 0;
	background: linear-gradient(transparent 50%,#f7c0bb 50%);
	position: absolute;
	top: 131px;
	left: 395px;
}

.kaitori2 .kaitori2-check-blue {
	color: #2738a0;
}

.kaitori2 .kaitori2-check-small {
	display: inline-block;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	position: absolute;
	top: 140px;
	left: -100px;
}

.tentou_kaitori_level3 .kaitori2-check-small {
	position: absolute;
	top: 150px;
}

/*20200217 買取実績買取履歴カード化/記事内aリンク色強制*/

.rirekicards {
    background-color: white;
    padding: 40px;
    box-shadow: 0 3px 6px #aaa;
    margin: 20px 20px 40px 20px;
}

time{
    font-size: 18px;
    border-bottom: solid 0.5px #414eab;
}

.rirekicards img{
    display: block;
	margin: 15px auto;
}

.item_txt_area a{
    color: #0000ee
}

/* ここまで 20200217*/

/*20200709 続きを読む*/
.continue-inp{
	display: none;
}
