@charset "utf-8";
/* CSS Document */
/* style.css */
a {
  color: #3b4746;
  text-decoration: none;
}
ul, li {
  list-style: none;
}
p {
  color: #3b4746;
}
img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .PCnone {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .SPnone {
    display: none !important;
  }
}
@font-face {
  font-family: ZenMaruGothic-Medium;
  src: url('../font/ZenMaruGothic-Medium.ttf') format("opentype");
}
@font-face {
  font-family: ZenMaruGothic-Regular;
  src: url('../font/ZenMaruGothic-Regular.ttf') format("opentype");
}
@font-face {
  font-family: ZenMaruGothic-Bold;
  src: url('../font/ZenMaruGothic-Bold.ttf') format("opentype");
}
html body {
  font-family: ZenMaruGothic-Medium;
  src: url('../font/ZenMaruGothic-Medium.ttf') format("opentype");
  color: #3B4746;
}


@media screen and (min-width: 961px) {

	/*=====================*/
	/*
	/* ヘッダー
	/*
	/*=====================*/

	body {
		border-top: 3px solid #e71219;
	}
	#header{
		margin:0;
		padding:0;
	}

	#header .subnavi{
		width:1000px;
		height:39px;
		margin:0 auto;
		text-align:right;
		line-height:39px;
		vertical-align:middle;
	}

	#header .subnavi li{
		display:inline;
		padding-left:20px;
	}

	#header .subnavi li img {
		width: auto;
		vertical-align: middle;
	}

	#header .gnavi{
		height:71px;
		background:url(/common/img/h_dotBg.gif) repeat-x;
		
	}

	#header .gnavi .inner{
		width:1000px;
		margin:0 auto;
		padding:1px 0px;
		overflow:hidden;
	}

	#header .gnavi .inner h1{
		float:left;
		width:147px;
	}

	#header .gnavi .inner ul{
		width:815px;
		float:right;
	}

	#header .gnavi .inner ul li{
		float:left;
	}
	.hamburger {
		display: none;
	}

	/*=====================*/
	/*
	/* フッター
	/*
	/*=====================*/
	#footer {
		margin: 0;
		font-size: 12px;
		color: #fff;
		background-color: #000;
		font-family: initial;
	}
	#footer .bottomLink {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		width: 23%;
		margin: 0 auto;
		padding: 20px 0 10px;
	}
	#footer .bottomLink p a {
		color: #fff;
		text-decoration: none;
	}
	#footer .bottomLink p a:hover {
		opacity: 0.6;
	}
	#footer .copywrite {
		padding: 10px 0;
		text-align: center;
		color: #fff;
	}

}

/*---------------------
/*
/* パンくず
/*
---------------------*/
#breadcrumbs{
	width:830px;
	margin:10px auto 35px;
}
#breadcrumbs li{
	display:inline;
	font-size:10px;
}

#breadcrumbs li a:link , 
#breadcrumbs li a:visited ,
#breadcrumbs li a:active  {
	color:#1e41c3;
	text-decoration:underline;
}

#breadcrumbs li a:hover{
	color:#1e41c3;
	text-decoration:none;
}

/* お問い合わせナビ */
#inquiryFixed {
	width: 100%;
	overflow: hidden;
	position: sticky;
	bottom: 0;
	pointer-events: none;
	transition: .5s;
	z-index: 999;
	opacity: 0;
}
#inquiryFixed.is-show {
	opacity: 1;
	pointer-events: auto;
}
#inquiryFixed .inquiryFixedWrapper {
	padding: 20px 0 20px 0;
	background-color: rgba(225, 229, 230, 0.7);
}
#inquiryFixed .inquiryArea img {
	width: fit-content;
}
#inquiryFixed .inquiryArea p {
	font-size: min(28px, 3.2vw);
	text-align: center;
	white-space: nowrap;
}
#inquiryFixed .inquiryFlex {
	margin-top: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 80px;
}
#inquiryFixed .inquiryFlex li {
	text-align: center;
}
#inquiryFixed .inquiryFlex li a {
	padding: 15px 20px;
	background: #FCBA19;
	display: block;
	color: #FFF;
	border-radius: 4px;
	font-size: 20px;
	width: 100%;
	min-width: 280px;
	box-sizing: border-box;
}
#inquiryFixed .inquiryFlex li a img {
	padding-bottom: 3px;
}
.noWrap {
	white-space: nowrap;
}

/*ロゴリンク*/
.logoLinkList ul {
	display: flex;
	width: fit-content;
	margin: 0 auto;
}
.logoLinkList ul a:hover {
  opacity: 0.6;
}
.logoLinkList ul img {
  display: block;
  width: 100%;
  height: 100%;
}
.logoLinkList ul .kkLink {
  max-width: 200px;
  padding: 3px 20px 3px 0;
  border-right: 1px solid #cacecf;
}
.logoLinkList ul .chargemoLink {
  max-width: 219px;
  padding: 3px 0 3px 20px;
}

/*レスポンシブ調整*/
@media screen and (min-width: 768px) {
  .inquiryArea {
    min-width: 440px;
  }
  #body {
  }
  a[href^="tel:"]{
    pointer-events: none;
  }
  #contents a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .inquiryFixedWrapper {
    padding: 2vw 0 2vw 0;
  }
  #headerWrap {
    border-bottom: none;
  }
  #headerWrap::after {
    content: "";
    display: block;
    width: 97vw;
    height: 1px;
    background-color: #00c8d7;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: -1;
  }
  /*SPのお問い合わせボタン*/
  .inquiryFixedWrapper .inquiryArea p {
    font-size: min(22px, 2.2vw);
    font-size: min(18px, 4.5vw);
  }
  #inquiryFixed .inquiryFlex {
	width: 92%;
	margin-inline: auto;
	gap: 16%;
  }
  #inquiryFixed .inquiryFlex li {
    width: 100%;
  }
  #inquiryFixed .inquiryFlex li a {
    min-width: unset;
    font-size: max(2.2vw, 10px);
    padding: 10px 0;
  }
  #inquiryFixed .inquiryFlex li a img.iconMail {
    width: 30px;
    height: 22px;
  }
  #inquiryFixed .inquiryFlex li a img.iconTel {
    width: 22px;
    height: 22px;
  }
}

@media screen and (max-width: 960px) {
	/*=====================*/
	/*
	/* ヘッダー(SP tab)
	/*
	/*=====================*/
	
	.gnavi {
		background-color: white;
		width: 100%;
		height: 55px;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 999;
	}
	.inner {
		padding: 0 3px 0 13px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: inherit;
		position: relative;
	}
	.header__title{
		width: 85px;
	}
	.header__title img {
		display: block;
		width: 100%;
	}
	.header__nav {
		position: absolute;
		right: 0;
		left: 0;
		top: 0;
		width: 100%;
		height: 100vh;
		transform: translateX(100%);
		background-color: #000;
		transition: ease .4s;
	}
	.nav-items {
		position: absolute;
		top: 40%;
		left: 50%;
		transform: translate(-50%, -50%);
		padding: 0;
		width: 80%;
	}
	.nav-items__item a {
		color: black;
		width: 100%;
		text-decoration:none;
		display: block;
	}
	.nav-items__item a span.PCnone {
		display: block!important;
	}
	.nav-items img.SPnone {
		display: none;
	}
	.hbgMenuLink{
		font-size: 16px;
		line-height: 7.5vh;
		color: #fff;
	}
	.nav__items.nav-items li{
		text-align: left;
		position: relative;
	}
	.nav__items.nav-items .navArrow::after{
		content: "";
		margin: auto;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 3px;
		width: 9px;
		height: 9px;
		border-top: 2px solid #ffffff;
		border-right: 2px solid #ffffff;
		transform: rotate(45deg);
	}
	.exLinkPZ{
		position: relative;
	}
	.exLinkPZ::before{
		content: "";
		position: absolute;
		top: 26px;
		right: 2px;
		display: block;
		width: 9px;
		height: 7px;
		border: 1px solid #ffffff;
	}
	.exLinkPZ::after{
		content: "";
		position: absolute;
		top: 23px;
		right: 0;
		display: block;
		width: 9px;
		height: 7px;
		border: 1px solid #ffffff;
		background-color: #000;
	}

	.header__nav.nav.active{
		z-index: 9999;
	}

	.nav__items li:first-child {
		border-top: 2px dotted #ffffff;
	}
	.nav__items li{
		border-bottom: 2px dotted #ffffff;
	}

	.nav-items__item:last-child a {
		margin-bottom: 0;
	}

	.hbgMenuLinkPZone{
		white-space: nowrap;
	}

	/* ハンバーガーメニュー */
	.header__hamburger {
		width: 48px;
		height: 100%;
	}
	.hamburger {
		background-color: transparent;
		border-color: transparent;
		z-index: 9999;
	}
	.hamburger span {
		width: 100%;
		height: 2px;
		background-color: #e8121a;
		position: relative;
		transition: ease .4s;
		display: block;
	}
	.hamburger span:nth-child(1) {
		top: 0;
	}
	.hamburger span:nth-child(2) {
		margin: 6px 0;
	}
	.hamburger span:nth-child(3) {
		top: 0;
	}
	.exLink::before{
		content: "";
		position: absolute;
		top: 9px;
		right: -20px;
		display: block;
		width: 9px;
		height: 7px;
		border: 1px solid #ffffff;
	}
	.exLink::after{
		content: "";
		position: absolute;
		top: 6px;
		right: -22px;
		display: block;
		width: 9px;
		height: 7px;
		border: 1px solid #ffffff;
		background-color: #000;
	}

	/* ハンバーガーメニュークリック後のスタイル */
	.header__nav.active {
		transform: translateX(0);
	}
	.hamburger.active span:nth-child(1) {
		top: 4px;
		transform: rotate(45deg);
		background-color: #fff;
	}
	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	.hamburger.active span:nth-child(3) {
		top: -12px;
		transform: rotate(-45deg);
		background-color: #fff;
	} 
	.nav-items__isolated{
		position: absolute;
		bottom: 20%;
		right: 15%;
		font-size: 16px;
	}
	.nav-items__isolated a{
		text-decoration: none;
		color: #ffffff;
	}
	#breadcrumbs {
		display: none;
	}
	
	/*=====================*/
	/*
	/* フッター
	/*
	/*=====================*/

	#footer {
		color: #fff;
		background-color: #000;
		font-family: initial;
	}
	#footer .bottomLink {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-evenly;
		padding: 5vw 0 2vw;
		font-size: 12px;
	}
	#footer .bottomLink p a {
		color: #fff;
		text-decoration: none;
	}
	#footer .bottomLink p a:hover {
		opacity: 0.6;
	}
	#footer .copywrite {
		padding: 2vw 0;
		font-size: 10px;
		text-align: center;
		color: #fff;
	}
}