@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap');
html {
  background-color: #F4F3EF;
}
body {
  line-height: 1.6;
  font-family: "Noto Sans JP","Oswald", sans-serif;
  background-color: #FFF;
  color: #000;
}
body.not_scroll {
  height: 100%;
  overflow: hidden;
}
@media (max-width: 750px) {
	.sp_br::before {
		content: "\a";
		white-space: pre;
	}
}
@media (min-width: 751px) {
}
#header {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}
@media (max-width: 750px) {
  #header .pcNavi {
    display: none;
  }
  #header {
    height: 55px;
    padding-inline: 8px;
  }
  #header .logo {
    flex-basis: 60%;
    display: flex;
    flex-direction: column;
  }
  #header .logo a {
    flex-grow: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #header .spNavi .openbtn {
    position: fixed;
    z-index: 99999; /*ボタンを最前面に*/
    top: 0px;
    right: 0px;
    cursor: pointer;
    width: 55px;
    height: 55px;
    border-bottom-left-radius: 9px;
    background-color: rgba(255,255,255,.3);
  }
	/*
  #header .spNavi .openbtn.active {
    box-shadow: none;
    background-color: #ee6e00;
  }
	*/
  #header .spNavi .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 15px;
    height: 4px;
    border-radius: 5px;
    background-color: #ee6e00;
    width: 30px;
  }
  #header .spNavi .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  #header .spNavi .openbtn span:nth-of-type(2) {
    top: 25px;
  }
  #header .spNavi .openbtn span:nth-of-type(3) {
    top: 35px;
  }
  #header .spNavi .openbtn.active span:nth-of-type(1) {
    top: 19px;
    left: 12px;
    transform: translateY(6px) rotate(-45deg);
    width: 34px;
    background: #FFF;
  }
  #header .spNavi .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  #header .spNavi .openbtn.active span:nth-of-type(3) {
    top: 31px;
    left: 12px;
    transform: translateY(-6px) rotate(45deg);
    width: 34px;
    background: #FFF;
  }
  #header .spNavi #g-nav {
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: #ee6e00;
    transition: all 0.3s;
  }
  #header .spNavi #g-nav.panelactive {
    opacity: 1;
    z-index: 9998;
    display: block;
		overflow-y: scroll;
  }
  #header .spNavi .spMenu {
    padding: 60px 15px;
    color: #FFF;
  }
  #header .spNavi .spMenu ul.gNavi {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		margin-bottom: 8px;
  }
  #header .spNavi .spMenu ul.gNavi > li {
		flex-basis: calc(50% - 4px);
  }
  #header .spNavi .spMenu ul.gNavi > li.w100 {
		flex-basis: 100%;
  }
  #header .spNavi .spMenu ul.gNavi > li > a {
		display: block;
		background-image: url("../img/ico_arrow.webp");
		background-repeat: no-repeat;
		background-position: right 8px center;
		background-size: auto 50%;
		border-radius: 8px;
		padding: 15px 8px;
		border: 2px solid #FFF;
  }
  #header .spNavi .spMenu ul.gNavi li ul.clsNavi {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		margin-top: 8px;
  }
  #header .spNavi .spMenu ul.gNavi li ul.clsNavi li {
		flex-basis: calc(50% - 4px);
		display: flex;
		flex-direction: column;
  }
  #header .spNavi .spMenu ul.gNavi li ul.clsNavi li a {
		flex-grow: 2;
		display: flex;
		align-items: center;
		gap: 8px;
		background-color: #ff8f39;
		border-radius: 8px;
		padding: 4px;
  }
  #header .spNavi .spMenu ul.gNavi li ul.clsNavi li a .img {
		flex-basis: 30%;
		flex-grow: 1;
		flex-shrink: 1;
  }
  #header .spNavi .spMenu ul.gNavi li ul.clsNavi li a .txt {
		flex-basis: 70%;
		flex-grow: 1;
		flex-shrink: 1;
  }
  #header .spNavi .spMenu ul.gNavi li ul.clsNavi li a .txt p {
		font-size: calc(50vw / 25);
  }
  #header .spNavi .spMenu .add_sp {
		display: flex;
		gap: 15px;
		margin-bottom: 15px;
  }
  #header .spNavi .spMenu .add_sp .addr {
		flex-basis: calc(65% - 7.5px);
		flex-grow: 1;
		flex-shrink: 1;
  }
  #header .spNavi .spMenu .add_sp .addr .logo {
		width: calc(65vw - 45px);
  }
  #header .spNavi .spMenu .add_sp .addr h2 {
		font-size:  calc((65vw - 45px) / 11);
  }
  #header .spNavi .spMenu .add_sp .addr p {
		font-size:  calc((65vw - 45px) / 15);
  }
  #header .spNavi .spMenu .add_sp ul {
		flex-basis: calc(35% - 4px);
		flex-grow: 1;
		flex-shrink: 1;
		display: flex;
		gap: 4px;
  }
  #header .spNavi .spMenu .add_sp ul li {
		flex-basis: calc(50% - 2px);
		display: flex;
		flex-direction: column;
  }
  #header .spNavi .spMenu .add_sp ul li a {
		flex-basis: 60px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		border-radius: 8px;
		background-color: #FFF;
		padding: 8px;
  }
  #header .spNavi .spMenu ul.textLink {
		display: flex;
		flex-wrap: wrap;
		gap: 2px;
  }
  #header .spNavi .spMenu ul.textLink li {
		flex-grow: 2;
		display: flex;
		flex-direction: column;
  }
  #header .spNavi .spMenu ul.textLink li:last-child {
  }
  #header .spNavi .spMenu ul.textLink li a {
		flex-grow: 2;
		width: 100%;
		display: block;
		padding: 0.5em;
		background-color: rgba(255,255,255,0.1);
		text-align: center;
  }
}
@media (min-width: 751px) {
  #header {
    width: 100%;
		height: 110px;
  }
  #header .logo {
    flex-basis: 380px;
		padding-inline: 15px;
    display: flex;
    flex-direction: column;
  }
  #header .logo a {
    flex-grow: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #header .pcNavi {
    display: flex;
		flex-direction: column;
		align-items: flex-end;
		padding: 8px 15px;
		gap: 2px;
  }
  #header .pcNavi .headToi {
    display: flex;
		align-items: flex-end;
		gap: 15px;
		padding-inline: 15px;
		height: 35px;
	}
  #header .pcNavi .headToi ul {
    display: flex;
  }
  #header .pcNavi .headToi ul li {
		font-size: 12px;
  }
  #header .pcNavi .headToi ul li a {
		padding: 8px;
  }
  #header .pcNavi .headToi .headTel {
  }
  #header .pcNavi .gNavi {
		flex-grow: 2;
    display: flex;
  }
  #header .pcNavi .gNavi li {
    display: flex;
		flex-direction: column;
  }
  #header .pcNavi .gNavi li a {
		flex-grow: 2;
    display: flex;
		flex-direction: column;
    justify-content: center;
		align-items: center;
		padding-inline: 1em;
		font-weight: bold;
  }
  #header .pcNavi .gNavi li a:hover {
		background-color: rgba(55,55,55,.05);
	}
  #header .spNavi {
    display: none;
  }
}
#footer {
  background-color: #EE6E00;
}
#footer::before {
	content: "";
	display: block;
	width: 100%;
	height: 600px;
	background-image: url("../img/footImg.jpg");
	background-size: contain;
	background-repeat: no-repeat;
}
#footer .footWrap {
	max-width: 1200px;
	width: 95vw;
	margin-inline: auto;
}
#footer .footWrap .map iframe {
  width:100%;
  height:100%;
}
#footer .footWrap .addr {
	color: #FFF;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
#footer .footWrap .addr p {
	line-height: 1.4;
}
#footer .footWrap .addr .copyright {
	margin-top: auto;
}
@media (max-width: 750px) {
  #footer {
    padding-bottom: 80px;
  }
  #footer::before {
    height: 150px;
    background-size: cover;
  }
  #footer .footWrap {
		padding-top: 30px;
  }
  #footer .footWrap .addr {
		align-items: center;
		gap: 15px;
  }
  #footer .footWrap .addr .shopName {
		width: 60%;
  }
  #footer .footWrap .addr .shopName p {
		font-size: calc(60vw / 21);
  }
  #footer .footWrap .addr .footTel {
		width: 60%;
  }
  #footer .footWrap .addr .footToi {
		width: 50%;
  }
  #footer .footWrap .addr .bnr_sugimo {
		width: 85%;
  }
}
@media (min-width: 750px) {
  #footer {
    padding-bottom: 30px;
  }
  #footer::before {
    height: 450px;
    background-size: cover;
	}
  #footer .footWrap {
    display: flex;
		flex-direction: row;
		gap: 100px;
		padding-top: 50px;
	}
  #footer .footWrap .map {
		flex-basis: 60%;
		height: 400px;
	}
  #footer .footWrap .addr {
		flex-basis: calc(40% - 100px);
		gap: 15px;
	}
  #footer .footWrap .addr h3 {
		font-size: 28px;
	}
}
@media (min-width: 1400px) {
  #footer::before {
    height: 600px;
}
}
.container {
	max-width: 1400px;
	width: 95vw;
	margin-inline: auto;
}
@media (max-width: 750px) {
}
@media (min-width: 751px) {
.container {
	width: calc(95vw - 75px);
	margin-right: calc(2.5vw + 75px);
}
}
@media (min-width: 1400px) {
.container {
	margin-inline: auto;
}
}
.fixToi {
	position: fixed;
	filter: drop-shadow( 0 0 5px rgba(0,0,0,.6));
}
@media (max-width: 750px) {
.fixToi {
	width: calc(100vw - 15px);
	bottom: 0;
	left: 7.5px;
}
}
@media (min-width: 751px) {
.fixToi {
	top: calc(50% - 190px);
	right: 0;
}
}
/************************************************************
　pager　.pager
*/
.pager {
	margin-bottom: 10px;
}
.pager .right ul {
	display: flex;
}
.pager .right ul li {
	display: flex;
	flex-direction: column;
}
.pager .right ul li + li {
	padding: 0 1px;
}
.pager .right ul li span {
	padding: 2px 0.5em;
	border: 1px solid #CCC;
	background-color: #EEEEF0;
	color: #999;
	align-self: stretch;
}
.pager .right ul li a {
	display: inline-block;
	padding: 2px 0.5em;
	border: 1px solid #ED7309;
	background-color: #ED7309;
	color: #FFF;
	align-self: stretch;
}
.pager .right ul li a:hover {
	opacity: 0.8;
}
@media (max-width: 750px) {
.pager {
	font-size: 1.1rem;
	text-align: center;
}
.pager .right ul {
	justify-content: center;
}
}
@media (min-width: 751px) {
.pager {
	display: flex;
	justify-content: space-between;
}
.pager .right {
	margin-left: auto;
	}
.pager .right  ul {
	align-self: flex-end;
	justify-content: flex-end;
}
}
/*
　/pager　.pager
************************************************************/
#pageTop {
	position: fixed;
	bottom: 5px;
	right: 5px;
	z-index: 99;
}
@media (max-width: 750px) {
#pageTop img {
	width: 15vw;
}
#pageTop {
	bottom: 80px;
}
}
a.spCall {
	text-decoration: none;
}
@media (min-width: 751px) {
a.spCall {
	text-decoration: none;
	pointer-events: none;
	cursor: default;
}
}

