@charset "UTF-8";
/* CSS Document */
html {
	visibility: hidden;
	opacity: 0;
	transition: 0.3s;
}
html.wf-active,
html.loading-delay {
	visibility: visible;
	opacity: 1;
}

* {
	word-break: break-all;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	color: #000;
	line-height: 1.6;
	letter-spacing: 0.02em;
}
#wrapper {
	overflow: hidden;
}
a {
	color: #4e4e4e;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
a img {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.inner {
	max-width: 1480px;
	margin-right: auto;
	margin-left: auto;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}

/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	background-position: top center;
	background-color: rgba(255, 255, 255, 0.95);
	z-index: 500;
	width: 100%;
}
header .h_inner {
	max-width: 2000px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	height: 80px;
}
header.is-animation {
	transition: 1s;
	box-shadow: 0 2px 13px rgba(0, 0, 0, 0.2);
}
header.is-animation .h_inner {
	height: 80px;
	transition: .5s;
}
header .h_inner .left {
	width: 180px;
}
header .h_inner .left .logo {
	width: 100%;
	margin-bottom: 0;
}
header .h_inner .left .logo a {
	display: block;
}
header .h_inner .left .logo a:hover {
	opacity: 0.7;
}
header .h_inner .right {
	width: calc(100% - 260px);
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
header .h_inner .right .global-nav .global-nav_list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0;
	padding-left: 0;
}
header .h_inner .right .global-nav .global-nav_list li {
	margin: 0 20px;
}
header .h_inner .right .global-nav .global-nav_list li a {
	text-align: center;
	color: #000;
	font-weight: 700;
	font-size: 17px;
	text-transform: uppercase;
	text-decoration: none;
}
header .h_inner .right .global-nav .global-nav_list li a:hover {
	color: #c01e20;
	cursor: pointer;
}
header .h_inner .right .global-nav .global-nav_list li ul {
	display: block;
}
header .h_inner .right .global-nav .global-nav_list .has-child {
	position: relative;
}
header .h_inner .right .global-nav .global-nav_list .has-child ul {
  position: absolute;
  left: 50%;
	transform: translateX(-50%);
  top: 36px;
  z-index: 4;
  background:#fff;
  width: 180px;
  visibility: hidden;
  opacity: 0;
	transition: all .3s;
	padding: 10px;
	border-radius: 10px;
	border: 1px solid #edebf0;
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.3));
}
header .h_inner .right .global-nav .global-nav_list .has-child:hover > ul,
header .h_inner .right .global-nav .global-nav_list .has-child:active > ul {
  visibility: visible;
  opacity: 1;
}
header .h_inner .right .global-nav .global-nav_list .has-child ul li {
  color: #000;
  border-bottom: 1px dotted #666;
	margin: 0;
}
header .h_inner .right .global-nav .global-nav_list .has-child ul li:last-of-type {
  color: #000;
  border-bottom: 1px dotted transparent;
	margin: 0;
}
header .h_inner .right .global-nav .global-nav_list .has-child ul li a {
  color: #000;
	font-size: 14px;
	padding: 6px 0px;
	display: block;
}
header .h_inner .right .global-nav .global-nav_list .has-child ul li a:hover,
header .h_inner .right .global-nav .global-nav_list .has-child ul li a:active {
  color: #c01e20;
}

/* fixBtn */
.fixBtn {
	position: fixed;
	z-index: 50;
	transition: all 0.3s;
	text-align: center;
	bottom: 80px;
	right: 0;
	padding-left: 0;
	margin-bottom: 0;
}
.fixBtn .f_box:last-of-type {
	margin-top: 16px;
}
.fixBtn .f_box {
	width: 120px;
	height: 120px;
  display: block;
}
.fixBtn .f_box a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #cc181c;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	text-decoration: none;
}
.fixBtn .f_box a span {
	display: block;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	color: #fff;
}
.fixBtn .f_box a .txt {
	position: relative;
	padding-top: 50px;
}
.fixBtn .f_box a .txt:before {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.fixBtn .f_box a .txt01:before {
	content: url("../img/common/fix_icon01.svg");
	width: 35px;
	height: 40px;
}
.fixBtn .f_box a .txt02:before {
	content: url("../img/common/fix_icon02.svg");
	width: 34px;
	height: 36px;
}
.fixBtn .f_box a:hover {
  opacity: .7;
}
.fixBtn .f_box a:hover .txt {
	color: #fff;
}

/* footer */
footer {
	background-color: #2f2725;
}
footer .inner {
	padding: 50px 40px 30px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
footer .inner .left {
	width: calc(40% - 20px);
}
footer .inner .left .f_logo {
	width: 100px;
}
footer .inner .left .f_logo a {
	display: block;
}
footer .inner .left .f_logo a:hover {
	opacity: .7;
}
footer .inner .left .snsArea,
footer .inner .left .addArea {
	padding-top: 20px;
}
footer .inner .left .snsArea ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100px;
	padding-left: 0;
	margin-bottom: 0;
}
footer .inner .left .snsArea ul li {
	width: 46px;
	height: 46px;
}
footer .inner .left .snsArea ul li a {
	display: block;
	border-radius: 50%;
	border: 1px solid #fff;
	padding: 8px;
	background-color: #2f2725;
}
footer .inner .left .snsArea ul li a:hover {
	background-color: #cc181c;
	border: 1px solid #cc181c;
}
footer .inner .left .addArea .company,
footer .inner .left .addArea .add,
footer .inner .left .addArea .tel,
footer .inner .left .addArea .add a {
	color: #fff;
}
footer .inner .left .addArea .add a {
	font-size: 13px;
}
footer .inner .left .addArea .add a:hover {
	color: #cc181c;
}
footer .inner .right {
	width: calc(60% - 20px);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
footer .inner .right .f_nav {
	width: calc(50% - 10px);
	margin-bottom: 0;
	padding-left: 0;
}
footer .inner .right .f_nav li {
	margin-bottom: 30px;
}
footer .inner .right .f_nav li a {
	text-decoration: none;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 700;
}
footer .inner .right .f_nav li a:hover {
	color: #cc181c;
}
footer .copy {
	color: #fff;
	text-align: center;
	padding-bottom: 40px;
}

#mb_pagination {
	padding: 0;
	border-radius: 5px;
}
#mb_pagination li {
	width: 100%;
	text-align: center;
}
#mb_pagination li a {
	background: #000;
	color: #fff;
}
#mb_pagination li span {
	background: #999;
	color: #fff;
}

@media screen and (max-width: 1200px) {
/* header */
header .h_inner .left {
		width: 180px;
	}
	header .h_inner .right {
	width: calc(100% - 220px);
	}
}

@media screen and (max-width: 1000px) {
	body {
		font-size: 14px;
	}
	/* 共通 */
	.inner {
		width: 100%;
		max-width: 100%;
	}
/* header */
	header {
		position: fixed;
	background-color: rgba(255, 255, 255, 0.98);
		box-shadow: 0 2px 13px rgb(0 0 0 / 20%);
	}
	header .h_inner {
		width: 100%;
		height: 70px;
		padding: 0 16px 0;
		align-items: center;
	}
	header .h_inner.is-animation {
		box-shadow: 0 0 0 rgb(0 0 0 / 0%);
		background-color: rgba(0, 0, 0, 0);
	}
	header.is-animation .h_inner {
		height: 70px;
	}
	header .h_inner .left {
    width: 160px;
	}
	.global-nav {
		position: fixed;
		right: -320px;
		top: 0;
		width: 300px;
		height: 100vh;
		padding-top: 40px;
		background-color: rgba(255, 255, 255, 0.98);
		transition: all .6s;
		z-index: 9999;
		overflow-y: auto;
	}
	header .h_inner .right .global-nav {
    padding-top: 0;
	}
	header .h_inner .right .global-nav .global-nav_list {
		display: block;
		padding: 56px 20px;
	}
	header .h_inner .right .global-nav .global-nav_list li {
		border-bottom: 1px dotted #666;
		margin: 0;
	}
	header .h_inner .right .global-nav .global-nav_list li a {
		padding: 16px 0 16px 40px;
		display: block;
		text-align: left;
		color: #000;
		font-size: 1rem;
	}
	header .h_inner .right .global-nav .global-nav_list li a:hover {
		color: #000;
	}
	header .h_inner .right .global-nav .global-nav_list .has-child {
		border-top: none;
	}
	header .h_inner .right .global-nav .global-nav_list .has-child ul li {
		border-top: 1px dotted #666;
		border-bottom: none;
	}
	header .h_inner .right .global-nav .global-nav_list li a {
		font-size: 1rem;
		display: block;
		padding: 20px 0;
		text-align: left;
	}
	header .h_inner .right .global-nav .global-nav_list .has-child ul {
		position: relative;
		left: 0;
		transform: translateX(0);
		top: 0;
		width: 100%;
		visibility: visible;
		opacity: 1;
		/* display: none; */
		border-radius: 0;
		border: none;
		filter: none;
		z-index: inherit;
		background: transparent;
		padding: 0;
		border-bottom: none;
		margin: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height .3s ease-in-out;
	}
	header .h_inner .right .global-nav .global-nav_list .has-child.active > ul {
		max-height: 438px;
		transition: max-height .3s ease-in-out;
	}
	header .h_inner .right .global-nav .global-nav_list .has-child ul li a {
		font-size: 0.9rem;
		padding: 16px 16px 16px 36px;
		text-align: left;
		position: relative;
	}
	header .h_inner .right .global-nav .global-nav_list .has-child ul li a:before {
		content: "-";
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
	}
	header .h_inner .right .global-nav .global-nav_list .has-child:before {
		content: "";
		position: absolute;
		right: 20px;
		top: 25px;
		width: 6px;
		height: 6px;
		border-top: 2px solid #666;
		border-right: 2px solid #666;
		transform: rotate(135deg);
	}
	header .h_inner .right .global-nav .global-nav_list .has-child.active:before {
		transform: rotate(-45deg);
	}
	header .h_inner .right .global-nav .global-nav_list .has-child a .nav_arrow {
		display: none;
	}

/* hamburgeメニュー */
.hamburger {
	position: absolute;
	right: 16px;
	top: 18px;
	width: 32px;
	height: 30px;
	cursor: pointer;
	z-index: 9999;
}
.hamburger_line {
	position: absolute;
	right: 0;
	height: 2px;
	background-color: #000;
	transition: all .6s;
}
.hamburger_line1 {
	top: 6px;
	width: 30px;
}
.hamburger_line2 {
	top: 14px;
	width: 30px;
}
.hamburger_line3 {
	top: 22px;
	width: 30px;
}
.nav-open .global-nav {
	right: 0;
}
.nav-open .hamburger_line1 {
	transform: rotate(45deg);
	top: 16px;
	width: 32px;
}
.nav-open .hamburger_line2 {
	width: 0;
	left: 50%;
}
.nav-open .hamburger_line3 {
	transform: rotate(-45deg);
	top: 16px;
	width: 32px;
}

/* footer */
footer {
	padding-bottom: 70px;
}
footer .inner {
	padding: 40px 4vw 20px;
}
footer .inner .left {
	width: calc(46% - 10px);
}
footer .inner .right {
	width: calc(52% - 10px);
}
footer .inner .right .f_nav li a {
	font-size: 1rem;
}
footer .copy {
	font-size: 13px;
	padding-bottom: 30px;
}
footer .f_subNav {
	height: 70px;
	background-color: #fff;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	box-shadow: 0 2px 13px rgb(0 0 0 / 20%);
}
footer .f_subNav .f_inner {
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 0;
}
footer .f_subNav .f_inner .f_box {
	width: calc(50%);
	height: 70px;
}
footer .f_subNav .f_inner .f_box:first-of-type {
	position: relative;
}
footer .f_subNav .f_inner .f_box:first-of-type::before {
	content: "";
	position: absolute;
	right: -1px;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: #d90b18;
	z-index: 2;
}
footer .f_subNav .f_inner .f_box a {
	display: block;
	height: 70px;
	text-align: center;
	font-weight: 700;
	color: #d90b18;
	font-size: 13px;
	line-height: 1.2;
	position: relative;
	background-color: #fff;
	text-decoration: none;
}
footer .f_subNav .f_inner .f_box:first-of-type a {
	padding-top: 44px;
}
footer .f_subNav .f_inner .f_box:nth-of-type(2) a {
	padding-top: 44px;
}
footer .f_subNav .f_inner .f_box a:before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: 100%;
}
footer .f_subNav .f_inner .f_box:first-of-type a:before {
	background-image: url("../img/common/fix_ficon01.svg");
	height: 26px;
	top: 12px;
	}
footer .f_subNav .f_inner .f_box:nth-of-type(2) a:before {
	background-image: url("../img/common/fix_ficon02.svg");
	height: 30px;
	top: 12px;
	}
}

@media screen and (max-width: 767px) {
/* footer */
	footer .inner {
		padding-left: 6vw;
		padding-right: 6vw;
	}
	footer .inner .left {
		width: 100%;
	}
	footer .inner .left .f_logo {
		width: 80px;
	}
	footer .inner .left .snsArea ul {
		width: 80px;
	}
	footer .inner .left .snsArea ul li a {
	padding: 4px;
	}
	footer .inner .left .snsArea ul li {
		width: 36px;
		height: 36px;
	}
	footer .inner .left .snsArea {
		padding-top: 16px;
	}
	footer .inner .left .addArea {
		padding-top: 16px;
	}
	footer .inner .right {
		width: 100%;
		padding-top: 36px;
	}
	footer .inner .right .f_nav li {
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 600px) {
/* footer */
	footer .inner .left .addArea .add .map {
		display: block;
	}
}


@media screen and (max-width: 600px) {
.global-nav {
    background-color: rgba(255, 255, 255, 0.9); /* 半透明 */
}

.global-nav .global-nav_list .has-child ul {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.global-nav .global-nav_list .has-child.active ul {
    max-height: 438px; /* 適切な高さに調整 */
    opacity: 1;
}
}
