@charset "UTF-8";
#webc_con {
	padding-top: 90px;
}
@media (max-width: 480px) {
	#webc_con {
		padding-top: 80px;
	}
}

/* ----------------------------------------
	reset
------------------------------------------*/
/* CSS Document */
@font-face {
  font-family: "Yu Gothic";
  font-display: auto;
  font-weight: normal;
  src: local("Yu Gothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular");
}
@font-face {
  font-family: "Yu Gothic";
  font-display: auto;
  font-weight: bold;
  src: local("Yu Gothic-Bold"), local("Yu Gothic");
}


.reset {
	--f-yum: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif,	sans-serif;
	--f-yug: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;

  letter-spacing: 0;
  text-size-adjust: 100%;
  color: #333;
  font-weight: 400;
	font-family: var(--f-yum);
	font-size: 1.231rem;
	line-height: 1.75;
}
.reset h1,
.reset h2 {
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: initial;
}
.reset ul {
	padding: initial;
	margin: initial;
	line-height: inherit;
}
.reset li {
	font-weight: inherit;
	line-height: inherit;
	list-style: none;
}
.reset a {
	color: inherit;
	display: inline-block;
	transition: all 0.28s ease;
}
.reset a:hover {
	text-decoration: initial;
}
.reset a:focus {
	outline: initial;
	outline-offset: initial;
	text-decoration: initial;
}
.reset a img{
	transition: 0.28s;
}
.reset p {
	margin: initial;
}
.reset address {
	font-style: inherit;
	line-height: inherit;
	margin-bottom: initial;
}
.reset dl {
	margin: initial;
}
.reset dt {
	line-height: inherit;
	font-weight: inherit;
}
.reset dd {
	line-height: inherit;
	margin: initial;
}

.reset .btn {
	background-image: initial;
	border: initial;
	border-radius: initial;
	cursor: initial;
	display: initial;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	margin-bottom: initial;
	padding: initial;
	text-align: inherit;
	touch-action: initial;
	-webkit-user-select: initial;
	-moz-user-select: initial;
	user-select: initial;
	vertical-align: inherit;
	white-space: inherit;
}

@media (min-width: 769px) {
	.site-header, .site-footer {
		min-width: 1100px;
	}
}

/* ----------------------------------------
	header
------------------------------------------*/
/* .site-header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
}

/* header-logo --------------------------*/
.site-header .header-logo {
  width: 120px;
}
.site-header .header-logo .h-logo a {
  display: block;
  text-align: center;
}
.site-header .header-logo .h-logo img {
  width: 80px;
  height: 30px;
}
 @media (max-width: 480px) {
  .site-header .header-logo {
    width: 100px;
  }
}

/* .site-header .h-right --------------------------*/
.site-header .h-right {
  width: calc(100% - 120px); /* 100% - ロゴの領域 */
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (min-width: 769px) {
	.site-header .h-right.sp-menu {
		display: none;
	}
}
@media (max-width: 768px) {
	.site-header .h-right.pc-menu {
		display: none;
	}
}
@media (max-width: 480px) {
  .site-header .h-right {
    width: calc(100% - 100px);
  }
}
/* gnav --------------------------*/
.site-header .h-right #gnav {
  width: auto;
}

.site-header #gnav .menulist {
  width: auto;
  display: table;
  position: relative;
  max-width: 100%;
  height: 60px;
  padding-right: 20px;
}
.site-header #gnav .menulist > li {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  position: relative;
  height: 100%;
}

.site-header #gnav .menulist > li > a,
.site-header #gnav .menulist > li.has-submenu > span {
	display: block;
  white-space: nowrap;
  line-height: 60px;
  padding-left: 25px;
  padding-right: 25px;
  color: #fff;
  transition: none;
}
@media (max-width: 991px) {
  .site-header #gnav .menulist > li > a,
  .site-header #gnav .menulist > li.has-submenu > span {
    padding-left: 14px;
    padding-right: 14px;
  }
}
.site-header #gnav .menulist > li .nav-txt {
  display: block;
  position: relative;
}

/* IEのみ */
@media (-ms-high-contrast: none) {
  .site-header #gnav .menulist > li > a,
  .site-header #gnav .menulist > li.has-submenu > span {
    line-height: 55px; /*メニューｓの高さ*/
  }
  .site-header #gnav .menulist > li .nav-txt {
    padding-top: 5px;
  }
}
.site-header #gnav .menulist > li .nav-txt:before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform ease 0.28s;
}
.site-header #gnav .menulist > li.active a .nav-txt:before,
.site-header #gnav .menulist > li a:hover .nav-txt:before,
.site-header #gnav .menulist > li.active > span .nav-txt:before,
.site-header #gnav .menulist > li > span:hover .nav-txt:before {
  transform: scaleX(1);
}

.site-header #gnav .menulist > li.has-submenu:hover {
  cursor: pointer;
}

/* submenu --------------------------*/
.site-header #gnav .menulist > li.has-submenu .submenu {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100%;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 20px);
  transition: transform ease 0.28s, opacity ease 0.28s, visibility ease 0.28s;
  width: 260px;
}
.site-header #gnav .menulist > li.has-submenu.touch .submenu {
  display: none;
}
.site-header #gnav .menulist > li.has-submenu.touch.active .submenu {
  display: block;
}
.site-header #gnav .menulist > li.has-submenu > span {
  display: block;
  white-space: nowrap;
}
/*.site-header #gnav .menulist > li.has-submenu.active .submenu,*/
.site-header #gnav .menulist > li.has-submenu:hover .submenu {
  display: block;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.site-header #gnav .menulist > li.has-submenu .submenu > li > a {
  position: relative;
	display: block;
  background-color: rgba(255, 255, 255, 0.85);
  line-height: 60px;
  width: 100%;
}
.site-header
  #gnav
  .menulist
  > li.has-submenu
  .submenu
  > li:not(:first-child)
  > a:before {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
/* IEのみ */
@media (-ms-high-contrast: none) {
  .site-header #gnav .menulist > li.has-submenu .submenu > li > a {
    padding-top: 5px;
    line-height: 45px;
  }
}
.site-header #gnav .menulist > li.has-submenu .submenu > li > a > span {
  /* padding: 0 30px; */
}
.site-header #gnav .menulist > li.has-submenu .submenu > li > a:hover {
  background-color: rgba(255, 255, 255, 0.95);
}
.site-header #gnav .menulist > li .submenu > li > a {
  white-space: nowrap;
}




.site-header #gnav .menulist > li.has-submenu .submenu-cont {
	width: auto;
	text-align: start;
	white-space: nowrap;
}
.site-header #gnav .menulist > li.has-submenu .submenu-box .box-ttl,
.site-header #gnav .menulist > li.has-submenu .submenu-box .box-list > li > a {
	padding: 0 30px;
	background-color: rgba(255,255,255,0.85);
	box-sizing: content-box;
}

.site-header #gnav .menulist > li.has-submenu .submenu-box .box-ttl {
	display: flex;
	align-items: center;
	padding-top: 20px;
}
.site-header #gnav .menulist > li.has-submenu .submenu-box:not(:last-child) {
	position: relative;
}
.site-header #gnav .menulist > li.has-submenu .submenu-box:not(:last-child)::before {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 50%;
	height: 1px;
	width: calc(100% - 60px);
	background-color: rgba(0, 0, 0, 0.3);
	transform: translateX(-50%);
}
/* .site-header #gnav .menulist > li.has-submenu .submenu-box:not(:last-child) .box-list > li:last-child > a {
	padding-bottom: 11px;
}
.site-header #gnav .menulist > li.has-submenu .submenu-box:last-child .box-list > li:last-child > a {
	padding-bottom: 11px;
} */
.site-header #gnav .menulist > li.has-submenu .submenu-box:not(:last-child)::after,
.site-header #gnav .menulist > li.has-submenu .submenu-box:last-child::after {
	content: "";
	display: block;
	width: 100%;
	height: 11px;
	background-color: rgba(255,255,255,0.85);
}
.site-header #gnav .menulist > li.has-submenu .submenu-box .box-list > li > a {
	display: flex;
	align-items: center;
	height: 45px;
}
.site-header #gnav .menulist > li.has-submenu .submenu-box .box-list > li > a .txt-box {
	position: relative;
	padding-left: 25px;
}
.site-header #gnav .menulist > li.has-submenu .submenu-box .box-list > li > a .txt-box::before {
	position: relative;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	height: 1px;
	width: 15px;
	background-color: rgba(51, 51, 51, 0.3);
}
.site-header #gnav .menulist > li.has-submenu .submenu-box .box-list > li > a:hover {
	background-color: rgba(255,255,255,0.95);
}




/* footer ----------------------------*/
.site-footer {
	background: url(https://www.mimatu.net/img/common/bg-footer.jpg) center center no-repeat;
	background-size: cover;
}
.site-footer .f-content {
	padding-top: 60px;
	padding-bottom: 30px;
}
.site-footer .f-inner {
	box-sizing: border-box;
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}
.site-footer .fcont-left {
	width: calc(100% - 160px);
	margin-bottom: 30px;
}
.site-footer .fcont-right {
	width: 160px;
}
@media (max-width: 640px) {
	.site-footer .fcont-left {
		width: 100%;
		order: 2;
	}
	.site-footer .fcont-right {
		order: 1;
        width: 100%;
	}
    .site-footer .fcont-right #tripad .TA_cdsratingsonlynarrow .cdsROW {
        width: 100%;
    }
}

/* 会社情報 */
.site-footer .f-info {
}
.site-footer .f-info > * {
	display: block;
}
.site-footer .f-info .fbox-cname > * {
	display: block;
	line-height: 1;
}
.site-footer .f-info .fbox-cname .flogo-img img {
	width: 151px;
	height: 58px;
}
.site-footer .f-info .flogo-img {
	padding-bottom: 20px;
}
.site-footer .f-info .f-add {
	padding-bottom: 10px;
}



/* f-add */
.site-footer .f-info .f-add > * {
	display: inline-block;
	vertical-align: middle;
}
.site-footer .f-info .f-add address {
	margin-right: 10px;
}

/* MAP */
.site-footer .f-info .to-gmap {
	font-family: var(--f-yug);
}
.site-footer .to-gmap a {
	padding: 3px 15px 1px 15px;
	background-color: #000;
	color: #fff;
	line-height: 1;
	font-size: 1.077rem;
}
.site-footer .to-gmap a:hover {
	background-color: #333;
}

@media (-ms-high-contrast: none) {
	.site-footer .to-gmap a {
		padding: 4px 15px 0px 15px;
	}
}

/* f-telfax */
.site-footer .f-info .f-telfax > * {
	display: inline-block;
	vertical-align: bottom;
}
.site-footer .f-info .f-telfax .f-btn {
	margin-right: 5px;

	/* display: inline-block; */
	vertical-align: bottom;
	color: #fff;
	background-color: #024503;
	line-height: 1.2;
	cursor: auto;
	height: 40px;
	max-width: 215px;
	width: 100%;
	overflow: hidden;
	position: relative;
	border-radius: 2px;

	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center;



}
.site-footer .f-info .f-telfax .f-btn::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.1);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: opacity ease 0.28s, visibility ease 0.28s;
}
.site-footer .f-info .f-telfax .btn-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.site-footer .f-info .f-telfax .btn-icon-tel img {
	display: block;
	width: 14px;
	height: 17px;
	margin-right: 5px;
	line-height: 0;
	vertical-align: top;
}
.site-footer .f-info .f-telfax .btn-txt {
	display: block;
	white-space: nowrap;
	font-size: 1.846rem;
}
.site-footer .f-info .f-telfax .f-fax {
	font-size: 1.538rem;
}



@media (max-width: 480px) {
	.site-footer .f-info .f-telfax .f-btn {
		/* margin-right: 0; */
	}
}

@media (-ms-high-contrast: none) {
	.site-footer .f-info .f-telfax .btn-tel .btn-txt {
		padding-top: 4px;
		margin-bottom: -4px;
	}
}


/* SNSアイコン */
.site-footer .f-SNS {
	display: table;
	table-layout: auto;
	margin-left: -7px;
	padding: 13px 0;
}
.site-footer .f-SNS .sns-icon {
	display: table-cell;
	vertical-align: middle;
}
.site-footer .f-SNS .sns-icon a {
	display: block;
	padding: 7px;
	line-height: 1;
}
.site-footer .f-SNS .sns-icon a:hover {
	opacity: 0.8;
}
.site-footer .f-SNS .sns-icon img {
	width: 30px;
	height: 30px;
}


/* ナビゲーション */
.site-footer .f-nav {
	margin-bottom: 30px;
}
.site-footer .f-nav.nav-center {
	text-align: center;
}
.site-footer .f-nav.nav-right {
	text-align: right;
}
.site-footer .f-nav .list {
	letter-spacing: -0.4em;
	font-size: 1.154rem;
}
@media (min-width:481px) and (max-width: 1200px) {

}
.site-footer .f-nav .list li {
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 0em;
	line-height: 1;
	border-right: 1px solid #333;
}
.site-footer .f-nav .list li:first-child {
	border-left: 1px solid #333;
}
.site-footer .f-nav .list li a {
	white-space: nowrap;
	padding: 0 15px;
	color: #333;
}
.site-footer .f-nav .list li a:hover {
	color: #000;
}

@media (max-width: 640px) {
	.site-footer .f-nav {
		display: block;
	}
	.site-footer .f-nav.nav-center,
	.site-footer .f-nav.nav-right {
		text-align: left;
	}
	.site-footer .f-nav .list li {
		width: 50%;
		margin-bottom: 3px;
	}
	.site-footer .f-nav .list li:nth-child(odd) {
		border-left: 1px solid #333;
	}
	.site-footer .f-nav .list li a {
		display: block;
		padding: 10px;
		white-space: normal;
	}
}

@media (max-width: 480px) {
	.site-footer .f-nav .list li {
		width: 100%;
		border-left: none;
		border-bottom: 1px solid #333;
		border-right: none;
	}
	.site-footer .f-nav .list li:nth-child(odd) {
		border-left: none;
	}
	.site-footer .f-nav .list li:first-child {
		border-top: 1px solid #333;
	}
}


/* コピーライト*/
.site-footer .copyright {
	padding-top: 20px;
	padding-bottom: 20px;
}
.site-footer .copyright .inner {
	box-sizing: border-box;
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}
.site-footer .copyright .txt {
	font-family: var(--f-yug);
	font-size: 0.846rem
}
